查看: 2635|回复: 0
打印 上一主题 下一主题

使用Assetbundles来组织项目资源文件

[复制链接]

5552

主题

2

听众

8万

积分

首席设计师

Rank: 8Rank: 8

纳金币
-1
精华
11

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

跳转到指定楼层
楼主
发表于 2012-4-10 16:38:38 |只看该作者 |倒序浏览
Let me start off by saying that unity3d is a really great game engine. Let me also say that I wish the documentation was as great as the engine is. Sadly, it’s difficult to figure out some of the more powerful features of Unity3D without significant trial and error.

Please note, that I have read that the usage of Assetbundles on the iPhone can be memory intensive and may or may not fit your needs per your project. I am just putting this information here so that others can see how to do this. Pro Tip: What this means to you? Profile the heck out of your code, pre-assetbundles and after integrating assetbundles.

Assumptions:

1. You know or are familiar Unity3D 3.3.

2. You can code in C#.

3. You’re an ace at creating prefabs in Unity.

4. You’re using Unity3D 3.3 Pro and iOS Pro.

OK, if you’re still feeling good, let’s bounce into this how-to.

Create the ProjectOpen up a new project in Unity3D and set it up for “iPhone” iOS. Feel free to name it whatever passes your way.In the project hierarchy, let’s go ahead and create a simple directory structure as follows:
/Example Project/

/Example Project/iphone/

/Example Project/iphone/objects/

/Example Project/iphone/materials/
Hit save after doing this and save your default scene and name it whatever you want.  In my case, I named it “test”.

Though, this is a near complete looking example (image to the right), the basic structure should look like the image to the right here.

Add at least one prefab to your project. I have added two prefabs here, “box” and “ABCD”. Both are just tests and contain a cube prefab with a simple texture applied. Make sure that the materials referenced by your prefabs have the following attributes. 1. They are named the same as the prefab. (See the image above!). 2. They are stored in the materials folder underneath the iphone folder.

UnityEditor Coding TimeWhen working on assetbundles, the first thing you have to do is generate them. Unfortunately, Unity3D does not have anything built in for generating these files except for a UnityEditor API. The UnityEditor s cript can only be run from inside the Unity3D editor tool. It typically appears as a menu item after the s cript has been successfully compiled. So if you can code, then you’re in good shape.

Let’s create the UnityEditor s cript. Create a new C-Sharp s cript in a /Plugins/ folder (create it if it doesn’t already exist) at the root of your project and name it MPCreateAssetBundle. Copy and paste the following into it. Please note: some of this code was borrowed from Unity’s own Character Customization tutorial on their website.


c#:

using System;

using System.IO;

using System.Collections.Generic;

using UnityEditor;

using UnityEngine;

using Object=UnityEngine.Object;

public class MPCreateAssetBundle : MonoBehaviour {

private static String[] mpAssetDir = new String[]{"iphone", "ipad", "macosx", "pc"};// , "universal"}; <-- not needed, use the /Resources/ folder.

[MenuItem("Custom/Monkey Prism/Create All Assetbundles #&i")]

public static void Execute() {

Debug.Log("Creating Assetbundles");

bool blnFound = false;

String currentDir = null;

foreach (Object o in Selection.GetFiltered(typeof(Object), SelectionMode.DeepAssets)) {

blnFound = true;

if (o.name.Contains("@")) continue; //animations!

String assetPath = AssetDatabase.GetAssetPath(o);

if (!File.Exists(assetPath)) {

currentDir = assetPath;

continue; //Files only.

}

//Only check those directories that we have specified in the mpAssetDir

Debug.Log(assetPath);

String currentBuildType = null;

foreach (String s in mpAssetDir) {

if (assetPath.Contains("/"+s+"/")) {

currentBuildType = s;

break;

}

}

if (currentBuildType == null) continue; //if the directory is not found to be one from the mpAssetDir bail out.

string assetBundleName = null, genericName = null;

List<Object> toinclude = new List<Object>();

//Generate pre-fabs for everything in the finished pre-fab directory.

if (o.GetType() == typeof(GameObject)) {

Debug.Log("GameObject " + currentDir);
String d = CharacterRoot((GameObject)o);

d += "materials/";

Debug.Log(d);

List<Material> materials = CollectAll<Material>(d);

Debug.Log("materials count=" + materials.Count);

genericName = o.name.ToLower();

assetBundleName = currentBuildType + "-prefab-" + genericName;

//Package up the prefabs in the iPhone directory.

toinclude.Add(o);

//Do we need to add in a material?  I think so.

foreach (Material m in materials) {

Debug.Log("Material Name=" + m.name);

if (m.name.Contains(genericName)) {

toinclude.Add(m);

Debug.Log("Added a new material!");

}

} //end foreach

}

if (assetBundleName == null) continue;

// Create a directory to store the generated assetbundles.

if (!Directory.Exists(AssetbundlePath))

Directory.CreateDirectory(AssetbundlePath);

// Delete existing assetbundles for current object

string[] existingAssetbundles = Directory.GetFiles(AssetbundlePath);

foreach (string bundle in existingAssetbundles) {

if (bundle.EndsWith(".assetbundle") && bundle.Contains("/assetbundles/" + assetBundleName))

File.Delete(bundle);

}

//Directories expected.

Debug.Log("currentBuildType = " + currentBuildType);
//path = AssetbundlePath + bundleName + ".assetbundle";

if (toinclude.Count > 0) {

String path = AssetbundlePath + assetBundleName + ".assetbundle";

Debug.Log(path);

if (currentBuildType.Equals(mpAssetDir[0]) || currentBuildType.Equals(mpAssetDir[1])) //iPhone & iPad

BuildPipeline.BuildAssetBundle(null, toinclude.ToArray(), path, BuildAssetBundleOptions.CollectDependencies, BuildTarget.iPhone);

else //TODO: might need to condition further and might want to use an enum with the conditional.

BuildPipeline.BuildAssetBundle(null, toinclude.ToArray(), path, BuildAssetBundleOptions.CollectDependencies);

}

} //end foreach

if (!blnFound) {

Debug.Log("no objects were found for building assets with.");

}

}

public static string AssetbundlePath

{

get { return "assetbundles" + Path.DirectorySeparatorChar; }

}

// This method loads all files at a certain path and

// returns a list of specific assets.

public static List<T> CollectAll<T>(string path) where T : Object

{

List<T> l = new List<T>();

string[] files = Directory.GetFiles(path);

foreach (string file in files)

{

if (file.Contains(".meta")) continue;

T asset = (T) AssetDatabase.LoadAssetAtPath(file, typeof(T));

if (asset == null) throw new Exception("Asset is not " + typeof(T) + ": " + file);

l.Add(asset);

}

return l;

}

// Returns the path to the directory that holds the specified FBX.

static string CharacterRoot(GameObject character)

{

string root = AssetDatabase.GetAssetPath(character);

return root.Substring(0, root.LastIndexOf('/') + 1);

}

}
注意:iphone, ipad, macosx, pc  针对性不同

本篇在iphone目录下生成.assetbundle文件。

如果是PC生成,那么要新建pc目录,在该目录下生成


其他一一对应。


Once this is completed, you’ll want to do two things.
1. Select (by moving your mouse over and left-clicking on it once) the iphone folder under “Example Project”.


2. Run the s cript as shown in the image:

So let’s back up for a second and look at what we just did. We created a project, created some folders within the project, placed prefabs into the iphone folder and created a UnityEditor s cript. Upon running this s cript, a new directory named “assetbundles” would be created.
This directory is not going to be visible to you until you open finder (on Mac) or explorer (on Windows) as it is located on the file system. (see the image above). Inside this folder you should see your prefab(s) named now as: iphone-prefab-<my prefab name>.assetbundle. If you are seeing this, congratulations, you’ve now created your own assetbundles uniquely per prefab.

Generic GameObject and a Simple s criptIf you’ve come this far, great work! We’re nearly done.

Let’s create a new GameObject under the Hierarchy.

Now we’re going to write a simple s cript to instantiate the assetbundles we assembled earlier. Create a new C-Sharp s cript in the /Plugins/ folder and name it “Example”. Copy and paste the following code into it:

using System;

using UnityEngine;

using System.Collections;
public class Example : MonoBehaviour {

private WWW www;

private AssetBundleRequest gameObjectRequest;

// Use this for initialization

IEnumerator Start () {

//TODO: change the name of the file below!!!

String strPath = "file://" + Application.dataPath + "/../assetbundles/iphone-prefab-box.assetbundle";

Debug.Log(strPath);

www = new WWW(strPath);

yield return www;

/* TODO: change the name "Box" to match the name of your prefab that you compiled into the assetbundle on step 1. */

AssetBundleRequest request = www.assetBundle.LoadAsync("Box", typeof(GameObject));      //Box  profeb的文件名

yield return request;

Instantiate(request.asset, new Vector3(3f, 0f, 0f), Quaternion.identity);

Instantiate(request.asset, new Vector3(0f, 0f, 0f), Quaternion.identity);

Instantiate(request.asset, new Vector3(-3f, 0f, 0f), Quaternion.identity);

www.assetBundle.Unload(true);

}

void Update() { }

}


NOTE: Make sure to change the TODO line in the code to match your file name! If you don’t do this, it might not work!

We’re nearly done! Drag your Example.cs s cript onto the GameObject you created earlier. Here is how my project looks:
Build TimeWe’re now going to build this codebase so that you can run it on your iOS device for testing. I’m going to skip the painful steps of creating a code signing certificate and all that jazz. We’re instead going to focus on how to get the actual assetbundle onto your iOS device in an area that will be accessible to the “Application.dataPath” call in your code!

1. Build the Unity project for iOS.

2. XCode should automatically open.

3. Within XCode you are going to need to tell it about your assetbundles folder! Open up finder or explorer and locate the assetbundles folder that was generated by the UnityEditor s cript we discussed earlier.

4. Drag and drop the assetbundles folder into XCode at the root of the iOS project. (You should see a prompt as follows)
5. Click “Finish”.

This will then look something like this:
6. Build the code using XCode and run it on your iOS device.

If everything works properly, you should see one of the prefabs instantiate on your iOS screen. That is all there is to it! I think you’ll find that this isn’t as bad as one might imagine, but it does require some serious fishing around in code examples and heavily crawling the Unity forums. The only way I figured this out was by trial and error, heavy amounts of Debug.Log calls and 3 pots of coffee. I’m now going to go and grind my teeth on my level editor.
分享到: QQ好友和群QQ好友和群 腾讯微博腾讯微博 腾讯朋友腾讯朋友 微信微信
转播转播0 分享淘帖0 收藏收藏0 支持支持0 反对反对0
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

关闭

站长推荐上一条 /1 下一条

手机版|纳金网 ( 闽ICP备08008928号

GMT+8, 2024-5-3 12:37 , Processed in 0.087415 second(s), 29 queries .

Powered by Discuz!-创意设计 X2.5

© 2008-2019 Narkii Inc.

回顶部