コード例 #1
0
        public static AssetBundleRequest LoadAsync(string path, Type type)
        {
            AssetBundleRequest result;

            Bundling.LoadAsync(path, type, out result);
            return(result);
        }
コード例 #2
0
 public static AssetBundleRequest LoadAsync <T>(string path)
 {
     return(Bundling.LoadAsync(path, typeof(T)));
 }
コード例 #3
0
 public static bool LoadAsync <T>(string path, out AssetBundleRequest request) where T : Object
 {
     return(Bundling.LoadAsync(path, typeof(T), out request));
 }