Added main menu and basic functionality

This commit is contained in:
=
2026-04-26 16:55:35 +02:00
parent 21199f8026
commit d2c788c826
6 changed files with 119 additions and 1 deletions
+1
View File
@@ -89,6 +89,7 @@ public partial class World : Node3D
{
Robot robot = ResourceLoader.LoadRobotPrefab().Instantiate<Robot>();
robot.Position = map[0].tiles[1,1].Position;
robot.Position -= new Vector3(0,1.5f,0);
AddChild(robot);
}
}