static int _m_GetAllDependencies(RealStatePtr L)
        {
            try {
                ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L);


                UnityEngine.AssetBundleManifest gen_to_be_invoked = (UnityEngine.AssetBundleManifest)translator.FastGetCSObj(L, 1);



                {
                    string _assetBundleName = LuaAPI.lua_tostring(L, 2);

                    string[] gen_ret = gen_to_be_invoked.GetAllDependencies(
                        _assetBundleName);
                    translator.Push(L, gen_ret);



                    return(1);
                }
            } catch (System.Exception gen_e) {
                return(LuaAPI.luaL_error(L, "c# exception:" + gen_e));
            }
        }
Esempio n. 2
0
 private void AddDependenceRootToAllLeaves(UnityEngine.AssetBundleManifest manifest, string guid)
 {
     Module.ModuleConfig.AllBundles[guid].IsRDRoot = true;
     foreach (string dependence in manifest.GetAllDependencies(guid)) //添加每一个依赖的文件
     {
         Module.ModuleConfig.AllBundles[dependence].RDBundles.Add(guid);
     }
 }
Esempio n. 3
0
        static StackObject *GetAllDependencies_0(ILIntepreter __intp, StackObject *__esp, IList <object> __mStack, CLRMethod __method, bool isNewObj)
        {
            ILRuntime.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain;
            StackObject *ptr_of_this_method;
            StackObject *__ret = ILIntepreter.Minus(__esp, 2);

            ptr_of_this_method = ILIntepreter.Minus(__esp, 1);
            System.String @assetBundleName = (System.String) typeof(System.String).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags) 0);
            __intp.Free(ptr_of_this_method);

            ptr_of_this_method = ILIntepreter.Minus(__esp, 2);
            UnityEngine.AssetBundleManifest instance_of_this_method = (UnityEngine.AssetBundleManifest) typeof(UnityEngine.AssetBundleManifest).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags) 0);
            __intp.Free(ptr_of_this_method);

            var result_of_this_method = instance_of_this_method.GetAllDependencies(@assetBundleName);

            return(ILIntepreter.PushObject(__ret, __mStack, result_of_this_method));
        }