Version: 2017.2
public byte[] bytes ;

描述

文本资源的原始字节。(只读)

如果要使用文本资源包含二进制数据,应确保文件具有 .bytes 扩展名。对于其他任何扩展名, 如果 TextImporter 无法将文件解析为 utf8 字符串,则将尝试剥离非 ascii 字符。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public TextAsset imageTA; void Start() { Texture2D tex = new Texture2D(4, 4); tex.LoadImage(imageTA.bytes); GetComponent<Renderer>().material.mainTexture = tex; } }