Add hero runtime

This commit is contained in:
2026-04-21 22:54:14 +02:00
parent 67737f3ba8
commit 762c8969ab
29 changed files with 1327 additions and 12 deletions

View File

@@ -28,6 +28,7 @@ public partial class GameRoot : Node
DebugBootMode.Smoke => SmokeScene,
DebugBootMode.ContentBrowser => ContentBrowserScene,
DebugBootMode.DebugSandbox => DebugSandboxScene,
DebugBootMode.HeroSandbox => HeroSandboxScene,
_ => MenuScene
};
@@ -72,6 +73,9 @@ public partial class GameRoot : Node
[Export]
public PackedScene? DebugSandboxScene { get; set; }
[Export]
public PackedScene? HeroSandboxScene { get; set; }
private Node? m_LoadedScene;
private DebugSettings? m_Settings;
private DebugCommandNode? m_CommandNode;