Unity加载二进制数据

Unity加载二进制数据

  The first step is to save your binary data file with the ".bytes" extensionunity will treat this file as a TextAsset. As a TextAsset the file can be included when you build your AssetBundle. Once you have downloaded the AssetBundle in your application and loaded the TextAsset object, you can use the .bytes property of the TextAsset to retrieve your binary data.

参考:http://www.unitymanual.com/thread-2037-1-1.html  

原文地址:https://www.cnblogs.com/tekkaman/p/4275953.html