TextAsset.text 文本

var text : string

Description描述

The text contents of the .txt file as a string. (Read Only)

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

using UnityEngine;
using System.Collections;

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

function Start () {
	print(asset.text);
}
最后修改:2011年1月2日 Sunday 21:20

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。