在Unity中创建可远程加载的.unity3d包

在一个Unity项目中,发布包本身不一定要包括所有的Asset(译为资产或组件),其它的部分可以单独发布为.unity3d,再由程序从本地/远程加载执行,这部分不在本文讨论范围。虽然Unity并没有直接提供.unity3d的导出功能,但可以通过其手册了解到一些,并打开菜单项。
  翻看Unity关于AssetBundle的手册,有相关的链接:

【注意】导出.unity3d格式需要pro版本,非pro版本可以打开菜单项,但导出时会提示错误:

  我们可以使用Untiy提供的现成的脚本打开两个导出.unity3d的菜单项,也可以使用API根据自己的需求来写。当项目变得越来越大时,手工导出AssetBundle会越来越吃力,这时可能就需要自己来开发导出功能,自动创建AssetBundle了。

打开菜单项

  在Unity中创建名为ExprotAssetBundles的C#脚本,放到Editor目录下(必须是这个目录,以便在编辑器中生效)。把下面的代码复制到ExprotAssetBundles脚本中(可以在Building AssetBundles中找到这段代码)

[csharp] view plaincopy

  1. <span style="font-size: 14px;">    // C# Example
  2. // Builds an asset bundle from the selected objects in the project view.
  3. // Once compiled go to "Menu" -> "Assets" and select one of the choices
  4. // to build the Asset Bundle
  5. using UnityEngine;
  6. using UnityEditor;
  7. public class ExportAssetBundles {
  8. [MenuItem("Assets/Build AssetBundle From Selection - Track dependencies")]
  9. static void ExportResource () {
  10. // Bring up save panel
  11. string path = EditorUtility.SaveFilePanel ("Save Resource", "", "New Resource", "unity3d");
  12. if (path.Length != 0) {
  13. // Build the resource file from the active selection.
  14. Object[] selection = Selection.GetFiltered(typeof(Object), SelectionMode.DeepAssets);
  15. BuildPipeline.BuildAssetBundle(Selection.activeObject, selection, path, BuildAssetBundleOptions.CollectDependencies | BuildAssetBundleOptions.CompleteAssets);
  16. Selection.objects = selection;
  17. }
  18. }
  19. [MenuItem("Assets/Build AssetBundle From Selection - No dependency tracking")]
  20. static void ExportResourceNoTrack () {
  21. // Bring up save panel
  22. string path = EditorUtility.SaveFilePanel ("Save Resource", "", "New Resource", "unity3d");
  23. if (path.Length != 0) {
  24. // Build the resource file from the active selection.
  25. BuildPipeline.BuildAssetBundle(Selection.activeObject, Selection.objects, path);
  26. }
  27. }
  28. }</span>

这时,在Assets菜单下可以看到两个新的菜单项:

1. Build AssetBundle From Selection - Track dependencies

  这个选项会把当前对象打包到一个asset bundle中,并包含所有依赖。

2. Build AssetBundle From Selection - No dependency tracking

  与前一个相反的选项,只包含所选的asset

  例:创建一个Cube,拖拽生成一个预置体。右键点击预置体,选择"Build AssetBundle From Selection - Track dependencies",这时可以看到.unity3d的保存窗口。在项目中创建一个名为AssetBundles的目录,并把选中的预置体存为Cube.unity3d,可以看到窗口显示如下:

现在,就可以把Cube.unity3d放到任意位置,或自己的服务器上。

如何在创建组件包时修改属性

  可以在调用 BuildPipeline.BuildAssetBundle以后使用 AssetDatabase.ImportAsset来强制导入组件,然后用 AssetPostprocessor.OnPreprocessTexture来设置需要的属性。

  下面的示例来展示构建组件包时如何设置不同的纹理贴图。

[csharp] view plaincopy

  1. // Builds an asset bundle from the selected objects in the project view,
  2. // and changes the texture format using an AssetPostprocessor.
  3. using UnityEngine;
  4. using UnityEditor;
  5. public class ExportAssetBundles {
  6. // Store current texture format for the TextureProcessor.
  7. public static TextureImporterFormat textureFormat;
  8. [MenuItem("Assets/Build AssetBundle From Selection - PVRTC_RGB2")]
  9. static void ExportResourceRGB2 () {
  10. textureFormat = TextureImporterFormat.PVRTC_RGB2;
  11. ExportResource();
  12. }
  13. [MenuItem("Assets/Build AssetBundle From Selection - PVRTC_RGB4")]
  14. static void ExportResourceRGB4 () {
  15. textureFormat = TextureImporterFormat.PVRTC_RGB4;
  16. ExportResource();
  17. }
  18. static void ExportResource () {
  19. // Bring up save panel.
  20. string path = EditorUtility.SaveFilePanel ("Save Resource", "", "New Resource", "unity3d");
  21. if (path.Length != 0) {
  22. // Build the resource file from the active selection.
  23. Object[] selection = Selection.GetFiltered(typeof(Object), SelectionMode.DeepAssets);
  24. foreach (object asset in selection) {
  25. string assetPath = AssetDatabase.GetAssetPath((UnityEngine.Object) asset);
  26. if (asset is Texture2D) {
  27. // Force reimport thru TextureProcessor.
  28. AssetDatabase.ImportAsset(assetPath);
  29. }
  30. }
  31. BuildPipeline.BuildAssetBundle(Selection.activeObject, selection, path, BuildAssetBundleOptions.CollectDependencies | BuildAssetBundleOptions.CompleteAssets);
  32. Selection.objects = selection;
  33. }
  34. }
  35. }

[csharp] view plaincopy

  1. // Changes the texture format when building the Asset Bundle.
  2. using UnityEngine;
  3. using UnityEditor;
  4. public class TextureProcessor : AssetPostprocessor
  5. {
  6. void OnPreprocessTexture() {
  7. TextureImporter importer = assetImporter as TextureImporter;
  8. importer.textureFormat = ExportAssetBundles.textureFormat;
  9. }
  10. }
时间: 2024-10-08 16:56:38

在Unity中创建可远程加载的.unity3d包的相关文章

DLL中创建对话框之加载资源【备忘一】

HINSTANCE hinst = GetModuleHandle(0);        HRSRC hr = ::FindResource(hinst, MAKEINTRESOURCE(IDD_MEMDIALOG), RT_DIALOG);        LoadResource(hinst, hr);        m_hWnd=CreateDialog(hinst, MAKEINTRESOURCE(IDD_MEMDIALOG), 0, DlgProc);

Unity+NGUI打造网络图片异步加载与本地缓存工具类(一)

我们在移动端的开发中,异步网络图片加载用的非常的多,在unity当中虽然有AssetBundle的存在,一般是先加载好游戏资源然后再进入场景,但是还有不少地方能够用到异步网络图片的加载以及其缓存机制. 我之前也写过两个版本的ios中的异步网络图片加载helper类,所以今天按照同样的思路,也想做一个好用的helper类给大家使用以及简单的说下实现原理. 首先我们加载一张网络图片,要做的事情分步来讲为: 0.开始之前设置一张固定的图片作为占位图(placeholder),表示我们的图片还没加载好,

在挂起的进程中创建一个远程线程

以挂起状态创建一个进程 invoke CreateProcess, NULL, szPath, NULL, NULL, FALSE, CREATE_SUSPENDED, NULL, NULL, addr @si, addr @pi 在该进程中创建一个远程线程 invoke CreateRemoteThread, hProcess, NULL, 0, eax, NULL, NULL, NULL 如果在恢复主线程之前,远程线程退出了,程序就会退出或没有界面(XP下会有这个问题,WIN7不会出现).

Android中常见的图片加载框架

图片加载涉及到图片的缓存.图片的处理.图片的显示等.而随着市面上手机设备的硬件水平飞速发展,对图片的显示要求越来越高,稍微处理不好就会造成内存溢出等问题.很多软件厂家的通用做法就是借用第三方的框架进行图片加载. 开源框架的源码还是挺复杂的,但使用较为简单.大部分框架其实都差不多,配置稍微麻烦点,但是使用时一般只需要一行,显示方法一般会提供多个重载方法,支持不同需要.这样会减少很不必要的麻烦.同时,第三方框架的使用较为方便,这大大的减少了工作量.提高了开发效率.本文主要介绍四种常用的图片加载框架,

MapXtreme在asp.net中的使用之加载地图(转)

MapXtreme在asp.net中的使用之加载地图(转) Posted on 2010-05-04 19:44 Happy Coding 阅读(669) 评论(0) 编辑 收藏 1.地图保存在本地的文件系统中,一定要有访问权限(否则无法打开),通过例子可以知道,使用web.config可以配置默认的工作空间. <add key="MapInfo.Engine.Session.Workspace" value="D:\Program Files\MapInfo\MapX

解析OBJ模型并将其加载到Unity3D场景中

??各位朋友,大家好,欢迎大家关注我的博客,我是秦元培,我的博客地址是http://qinyuanpei.com.今天想和大家交流的是解析obj模型并将其加载到Unity3D场景中,虽然我们知道Unity3D是可以直接导入OBJ模型的,可是有时候我们并不能保证我们目标客户知道如何使用Unity3D的这套制作流程,可能对方最终提供给我们的就是一个模型文件而已,所以这个在这里做这个尝试想想还是蛮有趣的呢,既然如此,我们就选择在所有3D模型格式中最为简单的OBJ模型来一起探讨这个问题吧! 关于OBJ模

iOS UIAlertView中UIActivityindicatorView风火轮提示加载等待

参考:http://stackoverflow.com/questions/18729220/uialertview-addsubview-in-ios7 1.SignInViewController.h #import <UIKit/UIKit.h> @interface SignInViewController : UIViewController<UIAlertViewDelegate>{ UIAlertView *remoteAlertView; } @end 2.Sign

Unity+NGUI打造网络图片异步加载与本地缓存工具类(二)

接上文,我们的工具类中的主要方法: public  void SetAsyncImage(string url,UITexture texture) 按照前文分析的图片加载步骤来 public void SetAsyncImage(string url,UITexture texture){ //开始下载图片前,将UITexture的主图片设置为占位图 texture.mainTexture = placeholder; //判断是否是第一次加载这张图片 if (!File.Exists (pa

018 关联映射文件中&lt;class&gt;标签中的lazy(懒加载)属性

Lazy(懒加载): 只有在正真使用该对象时,才会创建这个对象 Hibernate中的lazy(懒加载): 只有我们在正真使用时,它才会发出SQL语句,给我们去查询,如果不使用对象则不会发SQL语句进行查询. Hibernate中lazy(懒加载)的实现: 采用了第三方组件的库,这个库叫cglib.jar(比较流行),这个库对我们的类生成代理类(JDK的动态代理,只能对JDK中实现了接口的类进行代理),代理可以控制源对象并且可以对源对象的功能进行增强,而cglib.jar可以对类进行代理(cgl