博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
03.AB包补
阅读量:6679 次
发布时间:2019-06-25

本文共 1092 字,大约阅读时间需要 3 分钟。

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述
01.生成AB包
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
02.使用资源文件
在这里插入图片描述

//加载AB包        AssetBundle asset= AssetBundle.LoadFromFile(Application.streamingAssetsPath+ "/model");        //加载资源          Instantiate(asset.LoadAsset
("Cube"));

在这里插入图片描述

public Image image;    IEnumerator Load(string abName,string iconName)    {
AssetBundleCreateRequest request=AssetBundle.LoadFromFileAsync(Application.streamingAssetsPath + "/" + abName); yield return request; AssetBundleRequest sprite=request.assetBundle.LoadAssetAsync
(iconName); yield return sprite; image.sprite = sprite.asset as Sprite; }

03.资源依赖

在这里插入图片描述
在这里插入图片描述

AssetBundle asset= AssetBundle.LoadFromFile(Application.streamingAssetsPath+ "/model");        AssetBundle assetMain=AssetBundle.LoadFromFile(Application.streamingAssetsPath + "/PC");        AssetBundleManifest abMainfest=assetMain.LoadAsset
("AssetBundleManifest"); string[] str=abMainfest.GetAllDependencies("model"); for (int i = 0; i < str.Length; i++) {
AssetBundle.LoadFromFile(Application.streamingAssetsPath + "/" + str[i]); }

04.AB管理器

转载地址:http://lfrxo.baihongyu.com/

你可能感兴趣的文章
我的友情链接
查看>>
Linux系统新手学习的11点建议
查看>>
Android SDK:构建一个购物中心搜索的应用(二)-Points of Interest
查看>>
通过TFTP服务器拷贝路由器的配置文件到本地
查看>>
南方电网广东公司荣获“IT用户最佳实践案例奖”
查看>>
Yesod - 数据库 (9)
查看>>
redis多数据库
查看>>
RHCE认证培训+考试七天实录(五)
查看>>
ip nat translation (timeout)
查看>>
创建外网 ext_net - 每天5分钟玩转 OpenStack(104)
查看>>
api数据分页的两种方式的比较
查看>>
Python OpenCV学习笔记之:图像直方图反向投影
查看>>
布隆过滤器:实现代码
查看>>
使用Spring MVC开发RESTful API
查看>>
js复制input到剪切板(ie内核浏览器)单个input简洁版
查看>>
mysql.sock丢失解决
查看>>
BISO
查看>>
好程序员分享http的keep-alive和tcp的keep-alive区别
查看>>
tomcat调优方案
查看>>
Cisco2950 2960 交换机基本配置命令
查看>>