UNITY_资源路径与加载外部文件
UNITY_资源路径与加载外部文件
https://www.tuicool.com/articles/qMNnmm6
https://blog.csdn.net/appppppen/article/details/51396256
https://unity3d.com/cn/learn/tutorials/topics/best-practices/resources-folder
https://blog.csdn.net/qq_18995513/article/details/51958906
背景:
有许多静态数据是放在客户端中的,比如csv/xml文件,是需要动态读取文件的
实例: 动态读取一个xml文件,并生成一个类
<?xml version="1.0" encoding="UTF-8"?>
<test>
<name>chenjd</name>
<blog>http://www.cnblogs.com/murongxiaopifu/</blog>
<organization>Fanyoy</organization>
<age>25</age>
</test>
将此xml文件随意放在某路径下:Assets/aa/bb/Test.xml
使用代码读取文件内容
void Start() {
XElement result = LoadXML("Assets/aa/bb/Test.xml");
} void LoadXML(string path) {
XElement xml = XElement.Load(path);
return xml;
}
读取成功。
问题1. 路径和地址。在移动端是找不到文件的。
问题2. 使用的是PC上传统的一套读取资源的做法,而没有使用unity3d提供的方法。
可能导致找得到文件但是没能正确地读取文件内容
移动平台的资源路径:
Application.dataPath: 程序的数据文件所在文件夹。在Editor中就是Assets
安卓: /data/app/xxx.xxx.xxx.apk
iOS: Application/xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/xxx.app/Data
Application.streamingAssetsPath: 流数据的缓存目录,为相对路径,适合设置一些外部数据文件
安卓: jar:file:///data/app/xxx.xxx.xxx.apk/!/assets
iOS: Application/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/xxx.app/Data/Raw
Application.persistentDataPath: 持久化数据存储目录的路径,可用于存储一些持久化的数据文件
安卓: /data/data/xxx.xxx.xxx/files
iOS: Application/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/Documents
Application.temporaryCachePath: 临时数据的缓存目录
安卓: /data/data/xxx.xxx.xxx/cache
iOS: Application/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/Library/Caches
dataPath和streamingAssetsPath一般是相对程序的安装目录位置
persistentDataPath和temporaryCachePath一般是与系统有关的固定位置
那么,打包之后的资源的路径如何与这些地址对应上呢?
Unity中的资源处理种类:
Resources:
如果有文件夹名为Resources,则里面的内容会无条件地在打包时打包集成到.asset文件中
可以放置一些Prefab,因为Prefab在打包时会自动过滤掉不需要的资源,有利于减小资源包
1. 只读。不能动态修改,会动态更新的资源不要放在这里
2. 主线程加载
3. 使用Resources.Load()加载资源
StreamingAssets:
与Resources类似
区别为:Resources文件夹中的内容在打包时会被压缩和加密,而StreamingAssets中的内容则原封不动地打包
一般用来存放一些二进制文件
1. 只读,不能动态修改
2. 主要存放二进制文件
3. 只能通过WWW类读取
AssetBundle:
将prefab或二进制文件封装成AssetBundle文件(也是二进制文件)
缺点: 在移动端无法更新脚本
总结:
1. 该二进制文件(AssetBundle文件) 是Unity3D定义的一种二进制类型
2. 最好将Prefab封装成AssetBundle,但是在移动端无法更新脚本
3. 使用WWW类读取
PersistentDataPath:
这是一个路径(可读写)
在iOS上就是应用程序的沙盒;
在安卓上可以是程序的沙盒或sdCard -- 在安卓打包时,ProjectSetting的选项WriteAccess可设置路径是沙盒还是sdcard
总结:
1. 内容在运行时可读写,提前将数据存入这个路径是不可行的
2. 无内容类型的限制
3. 写下的文件可以在电脑上查看,同样也可以在电脑中清除
移动平台读取外部文件的方法:
使用Unity3D规定的操作方式来读取外部资源:Resources/ StreamingAssets/ AssetBundle
Resources:
新建Resources目录,在目录中创建文件Test.xml(之前在背景中提到的那个文件)
通过Resources的方法来读取Test.xml中的内容。
public class Test: MonoBehaviour {
private string _result;
void Start(){ LoadXML("Test"); } private void LoadXML(string path){
_result = Resources.Load(path).ToString();
XmlDocument doc = new XmlDocument();
doc.LoadXml(_result);
}
}
StreamingAssets:
新建StreamingAssets文件夹并存放Test.xml文件
(StreamingAssets文件夹中的文件不会被压缩或加密,所以一般是要放二进制文件的,这里放xml只是做一个演示,实际操作中切记不要直接把数据文件放到该目录中)
public class Test : MonoBehaviour {
private string _result;
void Start(){ StartCoroutine(LoadXML()); } IEnumerator LoadXML(){
string path = Application.streamingAssetsPath;
WWW www = new WWW(path);
yield return www;
_result = www.text;
}
}
AssetBundle:
比较麻烦,需要先把Test.xml打包成AssetBundle文件
创建好AssetBundle文件并命名为TestXML后,因为ab文件是二进制文件,因此放入StreamingAssets文件夹。
public class Test: MonoBehaviour {
private string _result;
void Start(){ LoadXML(); } void LoadXML(){
AssetBundle assetBundleCsv = new AssetBundle();
// 读取放入StreamingAssets文件夹中的ab文件
string str = Application.streamingAssetsPath + "/TestXML.bundle";
WWW www = new WWW(str);
www = WWW.LoadFromCacheOrDownload(str, );
assetBundleCsv = www.assetBundle;
string path = "Test";
TextAsset test = assetBundleCsv.Load(path, typeof(TextAsset)) as TextAsset;
_result = test.ToString();
}
}
PersistentDataPath:
只有在运行时才能读写,例如通过网络下载资源存放在PersistantDataPath中
与StreamingAssets的读取很类似,但要注意通过www类加载PersistentDataPath必须使用file://协议实现加载
public class Test: MonoBehaviour{
private string _result;
void Start(){ StartCoroutine(LoadXML()); } private void LoadXML(){
string path = "file://" + Application.persistentDataPath + "/test.xml";
WWW www = new WWW(path);
yield return www;
_result = www.text;
}
}
深入Resources.Load()
Recommendation: DO NOT USE IT.
Reasons:
1. Use of the Resources folder makes fine-grained memory management more difficult;
2. Improper use of Resources folders will increase applicaiton startup time and the length of builds
The increase of the number of Resources folders makes the management of the "Resources Assets" more difficult;
3. The Resources system degrades a project's ability to deliver custom content to specific platforms and eliminates the possibility of incremental content upgrades
AssetBundle Variants are Unity's primary tool for adjusting content on a per-device basis
Proper uses:
Two specific use cases where Resources system can be helpful
1. The ease of the Resources folder makes it an excellent system to rapidly prototype.
But when a project moves into full production, the use of Resources system should be eliminated.
2. When the content is:
Generally required throughout a project's lifetime
Not memory-intensive
Not prone to patching, or does not vary across platforms/ devices
Used for minimal bootstrapping
比如: 持有预制体的MonoBehaviour单例、包含第三方配置数据的ScriptableObject容器等
Resources的卸载:
Resources资源类型的加载方式只有一种,但卸载有多种。
1. Resources.UnloadAsset(Object assetToUnload)
从内存中卸载(非GameObject类型的资源???),会将内存中已加载的资源卸载掉
2. Destroy(obj)
仅用于卸载(GameObject类型???)的资源的克隆体
3. DestroyImmediately(obj)
卸载GameObject类型的资源,会将内存中已加载资源及其克隆体卸载;
但该方法只能用在非编辑模式下,否则会报错,提示改为DestroyImmediately(obj, true),
然而编辑模式下使用该函数会连文件夹里的原始Asset一并删除。
官方推荐的卸载方法为:
public static AsyncOperation UnloadUnusedAssets()
异步检索资源如果没有被使用才会卸载。
被全局变量引用的资源会导致一直无法释放。
UNITY_资源路径与加载外部文件的更多相关文章
- 背水一战 Windows 10 (11) - 资源: CustomResource, ResourceDictionary, 加载外部的 ResourceDictionary 文件
[源码下载] 背水一战 Windows 10 (11) - 资源: CustomResource, ResourceDictionary, 加载外部的 ResourceDictionary 文件 作者 ...
- django如何加载外部文件
django如何加载外部文件(环境:pycharm python2.7 django1.11) 有一份新的文件夹名为:py_aiplat_demo,内含有多个文件夹(SDK,demo,data). 1 ...
- 资源: CustomResource, ResourceDictionary, 加载外部的 ResourceDictionary 文件
CustomResource ResourceDictionary 加载外部的 ResourceDictionary 文件 示例1.演示“CustomResource”相关知识点Resource/Cu ...
- java加载外部文件数据到代码中:外部数据文件放到jar包中,调用方法getResourceAsStream
任务要将数据文件geo.txt加载进行.因为是别人写的总体项目,不能乱动位置.只能将geo.txt打包到jar中某目录.比如,放到.class文件下怎么加载:http://riddickbryant. ...
- jQuery加载外部文件的方式get、post、ajax、load的区别及异步加载的实现
一.$.post(url, [data], [callback], [type]) url (String) : 发送请求的URL地址. data (Map) : (可选) 要发送给服务器的数据,以 ...
- FusionCharts简单教程(六)------加载外部Logo
一.加载外部文件Logo 在使用FusionCharts时,我们可能需要在加载图像的时候需要在图表中显示标识.图片等等.这里我们可以使用logoURL属性来实现.如: <chart ...
- Java_Java中动态加载jar文件和class文件
转自:http://blog.csdn.net/mousebaby808/article/details/31788325 概述 诸如tomcat这样的服务器,在启动的时候会加载应用程序中lib目录下 ...
- [转载] Java中动态加载jar文件和class文件
转载自http://blog.csdn.net/mousebaby808/article/details/31788325 概述 诸如tomcat这样的服务器,在启动的时候会加载应用程序中lib目录下 ...
- spark-submit --files 动态加载外部资源文件
在做spark时,有些时候需要加载资源文件,需要在driver或者worker端访问.在client模式下可以使用IO流直接读取,但是在cluster模式下却不能直接读取,需要如下代码: val is ...
随机推荐
- 预估高并发下API服务器数量
我的主要工作就是API的编写,应该关注API的响应时间,以及并发时候的响应.那么如何测试API响应时间,以及预计高并发服务器压力呢? 从访问日志开始查起. 1 首先统计API每日访问总数.举例假设某个 ...
- sql 模糊查询优化
在sql语句中使用 like模糊查询时,应该尽量避免%%,因为模糊查询是比较慢的,当出现这样的情况时,应该考虑优化. 举个例子:我在表中查询2012 年创建的记录 SELECT * FROM `com ...
- Jmeter入门3 http请求—content-type与参数
本文讲三种content-type以及在Jmeter中对应的参数输入方式 第一部分:目前工作中涉及到的content-type 有三种: content-type:在Request Headers里, ...
- 1503. [NOI2004]郁闷的出纳员【平衡树-splay】
Description OIER公司是一家大型专业化软件公司,有着数以万计的员工.作为一名出纳员,我的任务之一便是统计每位员工的 工资.这本来是一份不错的工作,但是令人郁闷的是,我们的老板反复无常,经 ...
- Lambda表达式和For循环使用需要注意的一个地方
一个需要注意的地方看下面的代码: using System; using System.Collections.Generic; using System.Linq; namespace MyCsSt ...
- virtualbox+vagrant学习-2(command cli)-11-vagrant PowerShell命令
PowerShell 格式: vagrant powershell [-- extra powershell args] 这将在主机上打开PowerShell提示符,进入正在运行的vagrant机器. ...
- P1441 砝码称重
题目描述 现有n个砝码,重量分别为a1,a2,a3,……,an,在去掉m个砝码后,问最多能称量出多少不同的重量(不包括0). 输入输出格式 输入格式: 输入文件weight.in的第1行为有两个整数n ...
- 2-51单片机ESP8266学习-AT指令(开发板51单片机自动冷启动下载原理)
前言:了解就行,不必深究 上一篇链接 http://www.cnblogs.com/yangfengwu/p/8720148.html 源码链接:https://pan.baidu.com/s/1wT ...
- .Net实现Word文档及导出
参考网址: http://www.jb51.net/article/25062.htm(实用性) http://wenku.baidu.com/link?url=44O7Dua49DrZ-PF2QU7 ...
- SICP 习题 (1.35)解题总结
SICP 习题 1.35要求我们证明黄金切割率φ 是变换函数 x => 1+ 1/x 的不动点,然后利用这一事实通过过程fixed-point 计算出φ的值. 首先是有关函数的不动点,这个概念须 ...