feat: 添加场景过渡类型支持,优化场景加载逻辑

This commit is contained in:
2026-05-19 15:18:13 +08:00
parent be96b326de
commit ee0f659c97
12 changed files with 259 additions and 20 deletions

View File

@@ -111,10 +111,11 @@ namespace BaseGames.Support.AntiSoftlock
_onSceneLoadRequest?.Raise(new SceneLoadRequest
{
SceneName = scene,
EntryId = spawn,
SceneName = scene,
EntryId = spawn,
TransitionType = TransitionType.Scene,
ShowLoadingScreen = true,
IsRespawn = true,
IsRespawn = true,
});
}