Exemplo n.º 1
0
 public string GetBundleMidPath(bool bVersionAdd = false)
 {
     if (bVersionAdd == true)
     {
         return(@"[" + Convert.ToString(m_nVersion) + @"_" + CoreApplication.GetPlatformName() + @"]"); /*+ m_szAssetBundlePath;*/
     }
     else
     {
         return(m_szAssetBundlePath);
     }
 }
Exemplo n.º 2
0
 public static string FormatMasterFileName(string nVersion, string szDescName)
 {
     return(@"ppablist_" + szDescName + @"_" + nVersion + @"_" + CoreApplication.GetPlatformName() + @".bundlelist");
 }
Exemplo n.º 3
0
 public string GetBundleDownloadUrl()
 {
     return(GetBundleDownloadUrl(CoreApplication.GetPlatformName(), true));
 }
Exemplo n.º 4
0
 // 에셋 번들 저장 위치 (압축 여부)
 public string GetBundleLocalPath(bool bCompressed = false)
 {
     return(GetBundleLocalPath(CoreApplication.GetPlatformName(), bCompressed));
 }
Exemplo n.º 5
0
 public string FormatBundleName(bool bCompressed = false)
 {
     //--System.DateTime _DateUpdate = ClockManager.TimestampToLocalDateTime(m_dateUpdate);
     return(FormatBundleName(CoreApplication.GetPlatformName(), bCompressed));
 }
Exemplo n.º 6
0
 public string GetBundleDownloadUrl()
 {
     return(string.Format(@"{0}[{1}_{2}]/{3}", AssetBundleConfig.m_downloadRootUrl, EAAssetBundleLoadModule.m_AssetBundleMasterFileInfo.bundleVersion, CoreApplication.GetPlatformName(), m_fileName.Replace(AssetBundleConfig.m_abExtName, AssetBundleConfig.m_abExtZipName)));
 }