Versions with this page:
Versions without this page:
字符串形式的 .txt 文件的文本内容。(只读)
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { public TextAsset asset; void Start() { print(asset.text); } }