7-17-25 @ 3:55am

This commit is contained in:
2025-07-17 03:55:30 -04:00
parent c5795028f0
commit 3884c07811
23 changed files with 371 additions and 103 deletions

View File

@@ -5,7 +5,11 @@ public partial class Main : Node
{
public override void _Ready()
{
Globals.Instance._screenSize = GetViewport().GetVisibleRect().Size;
Globals.Instance._screenCenter = new Vector2(Globals.Instance._screenSize.X / 2, Globals.Instance._screenSize.Y / 2);
Battle newBattle = Battle._Create();
Globals.Instance._currentBattle = newBattle;
AddChild(newBattle);
}
public override void _Process(double DELTA_)