Example #1
0
 static public int LoadAllDependencies(IntPtr l)
 {
     try {
         LBoot.BundleDependencies self = (LBoot.BundleDependencies)checkSelf(l);
         System.String            a1;
         checkType(l, 2, out a1);
         System.Int32 a2;
         checkType(l, 3, out a2);
         self.LoadAllDependencies(a1, a2);
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
Example #2
0
 public static AssetBundleRef LoadWithDependencies(string uri, int ttl)
 {
     bundleDeps.LoadAllDependencies(uri, ttl);
     return(Load(uri, ttl));
 }