예제 #1
0
 public string GetBundleMidPath(bool bVersionAdd = false)
 {
     if (bVersionAdd == true)
     {
         return(@"[" + Convert.ToString(m_nVersion) + @"_" + CoreApplication.GetPlatformName() + @"]"); /*+ m_szAssetBundlePath;*/
     }
     else
     {
         return(m_szAssetBundlePath);
     }
 }
예제 #2
0
 public static string FormatMasterFileName(string nVersion, string szDescName)
 {
     return(@"ppablist_" + szDescName + @"_" + nVersion + @"_" + CoreApplication.GetPlatformName() + @".bundlelist");
 }
예제 #3
0
 public string GetBundleDownloadUrl()
 {
     return(GetBundleDownloadUrl(CoreApplication.GetPlatformName(), true));
 }
예제 #4
0
 // 에셋 번들 저장 위치 (압축 여부)
 public string GetBundleLocalPath(bool bCompressed = false)
 {
     return(GetBundleLocalPath(CoreApplication.GetPlatformName(), bCompressed));
 }
예제 #5
0
 public string FormatBundleName(bool bCompressed = false)
 {
     //--System.DateTime _DateUpdate = ClockManager.TimestampToLocalDateTime(m_dateUpdate);
     return(FormatBundleName(CoreApplication.GetPlatformName(), bCompressed));
 }
예제 #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)));
 }