unity AssetBundle 使用方法2

2024-06-09 14:48

本文主要是介绍unity AssetBundle 使用方法2,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

之前我们已经讲过如何通过AssetBundle 对文件进行打包,现在我们看一下如何将打包的文件添加到我们的unity场景中。

AssetBundle 加载

下载远端服务器的AB

1、通过构建www类进行下载,www类的下载操作最好放在协同程序中异步执行。

    string url = "http://127.0.0.1/GoldenFish.unity3d";WWW www = new WWW(url);yield return www;AssetBundle ab = www.assetBundle;

2、从服务端或者缓存中获取资源
WWW.LoadFromCacheOrDownload(string url, int version)
如果本地缓存中没有该资源,则从服务器下载,否则直接加载本地缓存资源
参数:url 资源所在连接,version 版本(服务端同一资源更新之后,需要更换版本,否则加载内容不变)

string url = "http://127.0.0.1/scenes.scene.assetbundle";WWW www = WWW.LoadFromCacheOrDownload(url, 1);yield return www;AssetBundle ab = www.assetBundle;Application.LoadLevel("http-login");//加载场景
加载本地的AB

AssetBundle.CreateFromMemory(byte[] data) 从内存数据流动态创建AB

AssetBundle.CreateFromFile(string path) 从磁盘文件动态创建AB,仅支持非压缩的AB

加载AB中的Assets

AssetBundle.Load() 加载AB中指定名字的Object

AssetBundle.LoadAsync() 异步加载AB中指定名字的Object

AssetBundle.LoadAll() 加载AB中的所有Objects

释放Asset Bundle & Assets

AssetBundle.Unload(false) 仅释放Asset Bundle本身

AssetBundle.Unload(true) 释放Asset Bundle以及从它加载的Assets

Resource.UnloadUnusedAssets() 仅释放没有引用的Assets

示例程序
从服务器下载模型显示在客户端
IEnumerator httpTest3()//从服务器下载模型显示在客户端{string url = "http://127.0.0.1/GoldenFish.unity3d";WWW www = new WWW(url);yield return www;AssetBundle ab = www.assetBundle;Object obj = ab.Load("GoldenFish", typeof(GameObject));Instantiate(obj);Object[] objs = ab.LoadAll();foreach (var item in objs){Debug.Log(item.name + "  " + item.GetType());if (item.name == "GoldenFish" && item.GetType().ToString() == "UnityEngine.GameObject"){Instantiate(item);}}Resources.UnloadUnusedAssets();}
从服务器下载场景文件
 IEnumerator httpTest4()//从服务器下载场景文件{string url = "http://127.0.0.1/scenes.scene.assetbundle";WWW www = WWW.LoadFromCacheOrDownload(url, 1);yield return www;AssetBundle ab = www.assetBundle;Application.LoadLevel("http-login");//加载场景}
从服务器下载依赖文件,被依赖的资源需要下载并加载
IEnumerator httpTest5()//从服务器下载依赖文件{string url = "http://127.0.0.1/model/texture1.assetbundle";//加载被依赖文件WWW www = new WWW(url);yield return www;AssetBundle ab = www.assetBundle;Object[] obj0 = ab.LoadAll();//foreach (var item in obj0)//{//    Debug.Log(item.name + "  " + item.GetType());//}string url2 = "http://127.0.0.1/model/objB1.assetbundle";//加载文件WWW www2 = new WWW(url2);yield return www2;AssetBundle ab2 = www2.assetBundle;//Object[] obj1= ab2.LoadAll();//foreach (var item in obj1)//{//    Debug.Log(item.name + "---" + item.GetType());//}Object gobj= ab2.Load("Cube2",typeof(GameObject));//Debug.Log(gobj.name);Instantiate(gobj);//Material ma2 = ab2.Load("ma1") as Material;//Renderer re = go.transform.GetComponent<Renderer>();//re.material = ma2;}
将资源打包,同时将信息保存在XML文件中,并通过本机加载显示

打包

 [MenuItem("Tools/打包")]public static void ABFolder(){string folderPath = EditorUtility.OpenFolderPanel("保存路径", "", "");Object[] objs = Selection.GetFiltered(typeof(object), SelectionMode.Deep);BuildAssetBundleOptions option = BuildAssetBundleOptions.CollectDependencies | BuildAssetBundleOptions.CompleteAssets | BuildAssetBundleOptions.DeterministicAssetBundle;XmlDocument doc = new XmlDocument();XmlDeclaration dec = doc.CreateXmlDeclaration("1.0", "utf-8", null);doc.AppendChild(dec);XmlElement root = doc.CreateElement("root");doc.AppendChild(root);XmlElement scene = doc.CreateElement("scene");scene.SetAttribute("name", "level1");root.AppendChild(scene);Debug.Log("leng=" + objs.Length);foreach (var item in objs){if (item is GameObject){GameObject gob = (GameObject) item;XmlElement gamObj = doc.CreateElement("gameObject");gamObj.SetAttribute("name", item.name);scene.AppendChild(gamObj);Object[] data = { item };BuildPipeline.BuildAssetBundle(item, data, folderPath + "/" + item.name + ".u3d", option);XmlElement pos = doc.CreateElement("position");pos.SetAttribute("x", gob.transform.position.x.ToString());pos.SetAttribute("y", gob.transform.position.y.ToString());pos.SetAttribute("z", gob.transform.position.z.ToString());gamObj.AppendChild(pos);XmlElement rot = doc.CreateElement("rotation");rot.SetAttribute("x", gob.transform.eulerAngles.x.ToString());rot.SetAttribute("y", gob.transform.eulerAngles.y.ToString());rot.SetAttribute("z", gob.transform.eulerAngles.z.ToString());gamObj.AppendChild(rot);XmlElement scal = doc.CreateElement("scale");scal.SetAttribute("x", gob.transform.localScale.x.ToString());scal.SetAttribute("y", gob.transform.localScale.y.ToString());scal.SetAttribute("z", gob.transform.localScale.z.ToString());gamObj.AppendChild(scal);}}doc.Save(Application.dataPath + "/myXml.xml");Debug.Log(Application.dataPath);}

加载资源,核心方法是读取XML和加载资源,其他方法与加载打包无关,是项目的其他内容,这里就懒得分离了

using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using System.Xml;
public class LoadAssets : MonoBehaviour
{public Transform player;GameObject currentPrefab;Dictionary<string, Vector3[]> inifoDic = new Dictionary<string, Vector3[]>();int pos = 0;// Use this for initializationvoid Start(){ReadXml();}// Update is called once per framevoid Update(){if (pos != getPos()){pos = getPos();Destroy(currentPrefab);switch (pos){case 1:StartCoroutine(CreatAsset("Capsule"));break;case 2:StartCoroutine(CreatAsset("Cube"));break;case 3:StartCoroutine(CreatAsset("Sphere"));break;case 4:StartCoroutine(CreatAsset("Cylinder"));break;}}}/// <summary>/// 加载资源/// </summary>/// <param name="name"></param>/// <returns></returns>IEnumerator CreatAsset(string name){string path = "file://" + Application.dataPath + "/StreamingAssets/" + name + ".u3d";WWW www = new WWW(path);yield return www;Object obj = www.assetBundle.Load(name, typeof(GameObject));Vector3[] arr;inifoDic.TryGetValue(name, out arr);if (obj != null){currentPrefab = Instantiate(obj) as GameObject;currentPrefab.transform.position = arr[0];currentPrefab.transform.eulerAngles = arr[1];currentPrefab.transform.localScale = arr[2];}www.assetBundle.Unload(false);}int getPos(){if (player.position.x > 0 && player.position.z > 0){return 1;}else if (player.position.x < 0 && player.position.z > 0){return 2;}else if (player.position.x < 0 && player.position.z < 0){return 3;}else if (player.position.x > 0 && player.position.z < 0){return 4;}return 0;}/// <summary>/// 读取XML文件/// </summary>private void ReadXml(){XmlDocument xml = new XmlDocument();xml.Load(Application.dataPath + "/myXml.xml");XmlNodeList objs = xml.SelectSingleNode("root").SelectSingleNode("scene").ChildNodes;foreach (XmlElement gob in objs){Vector3 pos = Vector3.zero, rot = Vector3.zero, scal = Vector3.one;foreach (XmlElement item in gob){float x, y, z;if (item.Name == "position"){x = float.Parse(item.GetAttribute("x"));y = float.Parse(item.GetAttribute("y"));z = float.Parse(item.GetAttribute("z"));pos = new Vector3(x, y, z);}else if (item.Name == "rotation"){x = float.Parse(item.GetAttribute("x"));y = float.Parse(item.GetAttribute("y"));z = float.Parse(item.GetAttribute("z"));rot = new Vector3(x, y, z);}else if (item.Name == "scale"){x = float.Parse(item.GetAttribute("x"));y = float.Parse(item.GetAttribute("y"));z = float.Parse(item.GetAttribute("z"));scal = new Vector3(x, y, z);}}Vector3[] arr = { pos, rot, scal };if (!inifoDic.ContainsKey(gob.Name)){inifoDic.Add(gob.Name, arr);}}}}

这篇关于unity AssetBundle 使用方法2的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1045482

相关文章

python管理工具之conda安装部署及使用详解

《python管理工具之conda安装部署及使用详解》这篇文章详细介绍了如何安装和使用conda来管理Python环境,它涵盖了从安装部署、镜像源配置到具体的conda使用方法,包括创建、激活、安装包... 目录pytpshheraerUhon管理工具:conda部署+使用一、安装部署1、 下载2、 安装3

Mysql虚拟列的使用场景

《Mysql虚拟列的使用场景》MySQL虚拟列是一种在查询时动态生成的特殊列,它不占用存储空间,可以提高查询效率和数据处理便利性,本文给大家介绍Mysql虚拟列的相关知识,感兴趣的朋友一起看看吧... 目录1. 介绍mysql虚拟列1.1 定义和作用1.2 虚拟列与普通列的区别2. MySQL虚拟列的类型2

使用MongoDB进行数据存储的操作流程

《使用MongoDB进行数据存储的操作流程》在现代应用开发中,数据存储是一个至关重要的部分,随着数据量的增大和复杂性的增加,传统的关系型数据库有时难以应对高并发和大数据量的处理需求,MongoDB作为... 目录什么是MongoDB?MongoDB的优势使用MongoDB进行数据存储1. 安装MongoDB

关于@MapperScan和@ComponentScan的使用问题

《关于@MapperScan和@ComponentScan的使用问题》文章介绍了在使用`@MapperScan`和`@ComponentScan`时可能会遇到的包扫描冲突问题,并提供了解决方法,同时,... 目录@MapperScan和@ComponentScan的使用问题报错如下原因解决办法课外拓展总结@

mysql数据库分区的使用

《mysql数据库分区的使用》MySQL分区技术通过将大表分割成多个较小片段,提高查询性能、管理效率和数据存储效率,本文就来介绍一下mysql数据库分区的使用,感兴趣的可以了解一下... 目录【一】分区的基本概念【1】物理存储与逻辑分割【2】查询性能提升【3】数据管理与维护【4】扩展性与并行处理【二】分区的

使用Python实现在Word中添加或删除超链接

《使用Python实现在Word中添加或删除超链接》在Word文档中,超链接是一种将文本或图像连接到其他文档、网页或同一文档中不同部分的功能,本文将为大家介绍一下Python如何实现在Word中添加或... 在Word文档中,超链接是一种将文本或图像连接到其他文档、网页或同一文档中不同部分的功能。通过添加超

Linux使用fdisk进行磁盘的相关操作

《Linux使用fdisk进行磁盘的相关操作》fdisk命令是Linux中用于管理磁盘分区的强大文本实用程序,这篇文章主要为大家详细介绍了如何使用fdisk进行磁盘的相关操作,需要的可以了解下... 目录简介基本语法示例用法列出所有分区查看指定磁盘的区分管理指定的磁盘进入交互式模式创建一个新的分区删除一个存

C#使用HttpClient进行Post请求出现超时问题的解决及优化

《C#使用HttpClient进行Post请求出现超时问题的解决及优化》最近我的控制台程序发现有时候总是出现请求超时等问题,通常好几分钟最多只有3-4个请求,在使用apipost发现并发10个5分钟也... 目录优化结论单例HttpClient连接池耗尽和并发并发异步最终优化后优化结论我直接上优化结论吧,

Window Server2016加入AD域的方法步骤

《WindowServer2016加入AD域的方法步骤》:本文主要介绍WindowServer2016加入AD域的方法步骤,包括配置DNS、检测ping通、更改计算机域、输入账号密码、重启服务... 目录一、 准备条件二、配置ServerB加入ServerA的AD域(test.ly)三、查看加入AD域后的变

Window Server2016 AD域的创建的方法步骤

《WindowServer2016AD域的创建的方法步骤》本文主要介绍了WindowServer2016AD域的创建的方法步骤,文中通过图文介绍的非常详细,对大家的学习或者工作具有一定的参考学习价... 目录一、准备条件二、在ServerA服务器中常见AD域管理器:三、创建AD域,域地址为“test.ly”