This commit is contained in:
CortexCore
2024-12-26 18:00:05 +08:00
parent 1c00d8fb1c
commit c79782b307
3 changed files with 18 additions and 4 deletions

View File

@@ -142,8 +142,12 @@ namespace BITKit
}
}
#endif
<<<<<<< Updated upstream
#if UNITY_5_3_OR_NEWER
if (IsEditorSimulateMode is false && isOffline)
=======
if (isOffline&& IsEditorSimulateMode is false)
>>>>>>> Stashed changes
{
initParameters = new OfflinePlayModeParameters();
}
@@ -159,7 +163,12 @@ namespace BITKit
try
{
initOperation = package.InitializeAsync(initParameters);
_progressLabel.text ="正在初始化资源系统...";
var text = $"正在初始化资源系统...,使用{initParameters.GetType().Name}";
_progressLabel.text =text;
Debug.Log(text);
}
catch (Exception e)
{