Exemplo n.º 1
0
        public static void ForceUnloadAssetBundleCacheList(string type)
        {
            if (string.IsNullOrEmpty(type))
            {
                return;
            }

            C_AssetBundleMgr.GetInstance().ForceUnloadCahceList(type);
        }
Exemplo n.º 2
0
        public static float GetAssetBundleCacheListProgress(string type)
        {
            if (string.IsNullOrEmpty(type))
            {
                return(0);
            }

            return(C_AssetBundleMgr.GetInstance().GetCacheProgress(type));
        }
Exemplo n.º 3
0
        public static void LoadAssetBundleCacheList(string type, List <string> assetBundlePathList)
        {
            if (string.IsNullOrEmpty(type) || assetBundlePathList.Count == 0)
            {
                return;
            }

            C_AssetBundleMgr.GetInstance().LoadCacheList(type, assetBundlePathList);
        }