Make home the default page

This commit is contained in:
Chris Bell 2025-08-22 15:35:07 -05:00
parent 80071050cc
commit 5a5b17bf20

View File

@ -42,7 +42,7 @@ public partial class AppManager : Node
}
catch (InvalidCastException e)
{
GD.PrintErr($"Couldn't add page '{scene}': {e}");
GD.PrintErr($"Couldn't add page '{scene.ResourceName}': {e}");
continue;
}
}
@ -64,6 +64,8 @@ public partial class AppManager : Node
}
MainCanvas.AddChild(MainUI);
LoadPage("Home");
}
public void LoadPage(string pageName)