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

10
Scripts/SpawnPoint.cs Normal file
View File

@@ -0,0 +1,10 @@
using Godot;
public partial class SpawnPoint : Marker3D
{
public void SetPlayerPosition(Character character)
{
GD.Print("Moving character to spawn point");
character.Position = Position;
}
}