public string text ;

描述

字符串形式的 .txt 文件的文本内容。(只读)

using UnityEngine;

public class Example : MonoBehaviour { TextAsset asset;

void Start() { print(asset.text); } }