Version: 2017.1
public string text ;

描述

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

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public TextAsset asset; void Start() { print(asset.text); } }