Initial character select implementation

This commit is contained in:
2023-09-03 15:06:39 -07:00
parent a15973a621
commit f7417d0afd
26 changed files with 269 additions and 154 deletions

View File

@@ -8,7 +8,7 @@ public partial class TestLevel : Node3D
public override void _Ready()
{
var players = GetTree().GetNodesInGroup("Player");
foreach (TestCharacter player in players)
foreach (Player1 player in players)
player.Transform = _spawnPoint.Transform;
}