纳金网

标题: Unity3D技术之在资源包中加入脚本详解 [打印本页]

作者: 狂风大尉    时间: 2015-1-31 19:16
标题: Unity3D技术之在资源包中加入脚本详解
在资源包中加入脚本

脚本可作为文本资源 (TextAssets) 添加至资源包 (AssetBundles),但实际上,如此情况下的脚本将成为不可运行的代码。如需在资源包 (AssetBundles) 中添加可在应用程序中运行的代码,则需要将其预编译为程序集,并使用 Mono 映射 (Reflection) 类加载程序集(注意:映射不适用于 iOS)。

您可在任意普通的 C# 集成开发环境 (IDE)(如 Monodevelop,Visual Studio)中创建程序集,或使用 mono/.net 编译器创建任何文本编辑器。
  1. string url = "http://www.mywebsite.com/mygame/assetbundles/assetbundle1.unity3d";
  2. IEnumerator Start () {
  3. // Start a download of the given URL
  4. WWW www = WWW.LoadFromCacheOrDownload (url, 1);

  5. // Wait for download to complete
  6. yield return www;

  7. // Load and retrieve the AssetBundle
  8. AssetBundle bundle = www.assetBundle;

  9. // Load the TextAsset object
  10. TextAsset txt = bundle.Load("myBinaryAsText", typeof(TextAsset)) as TextAsset;

  11. // Load the assembly and get a type (class) from it
  12. var assembly = System.Reflection.Assembly.Load(txt.bytes);
  13. var type = assembly.GetType("MyClassDerivedFromMonoBehaviour");

  14. // Instantiate a GameObject and add a component with the loaded class
  15. GameObject go = new GameObject();
  16. go.AddComponent(type);
  17. }
复制代码

作者: tianhett    时间: 2015-1-31 20:50
感谢分享。。。。




欢迎光临 纳金网 (http://wwww.narkii.com/club/) Powered by Discuz! X2.5