Beispiel #1
0
        /// <summary>
        /// 获取缓存文件夹的加载路径
        /// </summary>
        public string GetCacheLoadPath()
        {
            if (_patchBundle == null)
            {
                return(string.Empty);
            }

            if (string.IsNullOrEmpty(_cachePath))
            {
                _cachePath = SandboxHelper.MakeCacheFilePath(_patchBundle.Hash);
            }
            return(_cachePath);
        }