Loading screen fixes, transition screen UI fixes

This commit is contained in:
2026-02-03 01:47:42 -08:00
parent 51010c4f7d
commit 34dce8c5a2
14 changed files with 335 additions and 256 deletions

View File

@@ -58,6 +58,8 @@ public partial class Game : Node3D, IGame
public delegate void SaveFileLoadedEventHandler();
public event Action GameExitRequested;
public event Action GameLoaded;
#endregion
public RescuedItemDatabase RescuedItems { get; set; } = default!;
@@ -200,6 +202,7 @@ public partial class Game : Node3D, IGame
_effectService = new EffectService(this, _player, _map);
_player.Activate();
await _map.LoadFloor();
GameLoaded?.Invoke();
}
public async Task Save() => await SaveFile.Save();