diff --git a/Client/Assets/Scripts/Startup/LauncherUIHandler.cs b/Client/Assets/Scripts/Startup/LauncherUIHandler.cs index 4475798..b51a723 100644 --- a/Client/Assets/Scripts/Startup/LauncherUIHandler.cs +++ b/Client/Assets/Scripts/Startup/LauncherUIHandler.cs @@ -17,7 +17,7 @@ namespace Unity.Startup.Procedure public static void Start() { - eventRuntimeHandle = EventPublisher.Subscribe(SetProgressUpdate); + eventRuntimeHandle = EventBus.Subscribe(SetProgressUpdate); GameApp.UI.ShowUI(); } diff --git a/Client/Assets/Scripts/Startup/Procedure/ProcedureDownloadBundleState.cs b/Client/Assets/Scripts/Startup/Procedure/ProcedureDownloadBundleState.cs index e55c372..7a6c37e 100644 --- a/Client/Assets/Scripts/Startup/Procedure/ProcedureDownloadBundleState.cs +++ b/Client/Assets/Scripts/Startup/Procedure/ProcedureDownloadBundleState.cs @@ -71,7 +71,7 @@ namespace Unity.Startup.Procedure private void OnDownloadProgressCallback(DownloadUpdateData data) { - EventPublisher.Publish(AssetDownloadProgressUpdateEventArgs.Create(data.PackageName, data.TotalDownloadCount, data.CurrentDownloadCount, data.TotalDownloadBytes, data.CurrentDownloadBytes)); + EventBus.Publish(AssetDownloadProgressUpdateEventArgs.Create(data.PackageName, data.TotalDownloadCount, data.CurrentDownloadCount, data.TotalDownloadBytes, data.CurrentDownloadBytes)); } } } diff --git a/Client/Assets/Scripts/Startup/Procedure/ProcedureGetAppVersionInfoState.cs b/Client/Assets/Scripts/Startup/Procedure/ProcedureGetAppVersionInfoState.cs index 01f52f6..491f9e6 100644 --- a/Client/Assets/Scripts/Startup/Procedure/ProcedureGetAppVersionInfoState.cs +++ b/Client/Assets/Scripts/Startup/Procedure/ProcedureGetAppVersionInfoState.cs @@ -32,10 +32,9 @@ namespace Unity.Startup.Procedure #if UNITY_EDITOR UnityEditor.EditorApplication.isPlaying = false; #else - Application.OpenURL(StartupSetting.AppDownloadUrl); - Application.Quit(); + Utility.Platform.OpenURL(StartupSetting.AppDownloadUrl); + Utility.Platform.Quit(); #endif - return; } diff --git a/Client/Packages/com.alicizax.unity.framework b/Client/Packages/com.alicizax.unity.framework index b01ada2..d5518c4 160000 --- a/Client/Packages/com.alicizax.unity.framework +++ b/Client/Packages/com.alicizax.unity.framework @@ -1 +1 @@ -Subproject commit b01ada2f40937d37c9ad952ea46250a9253272fc +Subproject commit d5518c46b1d84f3103ad49d35eff6889e93e5b4a