| | |
| | | // { |
| | | // for (var i = 0; i < 3; i++) |
| | | // { |
| | | // var sprite = BuiltInLoader.LoadSprite(StringUtility.Contact("Launch_", i + 1)); |
| | | // var sprite = BuiltInLoader.LoadSprite(StringUtility.Concat("Launch_", i + 1)); |
| | | // if (sprite != null) |
| | | // { |
| | | // backGrounds.Add(sprite); |
| | |
| | | case LaunchStage.SDKInit: |
| | | return Language.GetFromLocal(36); |
| | | case LaunchStage.AssetCopy: |
| | | return StringUtility.Contact(Language.GetFromLocal(37), "(", step.ToString(), ")"); |
| | | return StringUtility.Concat(Language.GetFromLocal(37), "(", step.ToString(), ")"); |
| | | case LaunchStage.AssetDecompress: |
| | | return StringUtility.Contact(Language.GetFromLocal(38), "(", step.ToString(), ")"); |
| | | return StringUtility.Concat(Language.GetFromLocal(38), "(", step.ToString(), ")"); |
| | | case LaunchStage.ClientVersion: |
| | | return Language.GetFromLocal(39); |
| | | case LaunchStage.CheckAsset: |
| | |
| | | case LaunchStage.AssetBundleInit: |
| | | return Language.GetFromLocal(42); |
| | | case LaunchStage.ConfigInit: |
| | | return StringUtility.Contact(Language.GetFromLocal(43), "(", step.ToString(), ")"); |
| | | return StringUtility.Concat(Language.GetFromLocal(43), "(", step.ToString(), ")"); |
| | | case LaunchStage.Complete: |
| | | return Language.GetFromLocal(44); |
| | | default: |
| | |
| | | m_IosProgressContainer.SetActive(LaunchInHot.progressInfo.stage != LaunchStage.DownLoad); |
| | | var remainder = ((int)Time.time) % 3; |
| | | var dot = remainder == 0 ? "." : remainder == 1 ? ".." : "..."; |
| | | m_IosProgressTip.text = StringUtility.Contact(Language.GetFromLocal(30), dot); |
| | | m_IosProgressTip.text = StringUtility.Concat(Language.GetFromLocal(30), dot); |
| | | } |
| | | else |
| | | { |
| | |
| | | //{ |
| | | // assetBuildTimeShowed = true; |
| | | // var totalMinute = (int)(AssetVersionUtility.assetsBuildTime - new DateTime(2018, 1, 1)).TotalMinutes; |
| | | // m_Version.text = StringUtility.Contact(VersionConfig.Get().version, "_", VersionConfig.Get().buildIndex, "_", totalMinute.ToString()); |
| | | // m_Version.text = StringUtility.Concat(VersionConfig.Get().version, "_", VersionConfig.Get().buildIndex, "_", totalMinute.ToString()); |
| | | //} |
| | | } |
| | | |