11 lines
213 B
C#
11 lines
213 B
C#
using Godot;
|
|
|
|
public partial class SpawnPoint : Marker3D
|
|
{
|
|
public void SetPlayerPosition(Character character)
|
|
{
|
|
GD.Print("Moving character to spawn point");
|
|
character.Position = Position;
|
|
}
|
|
}
|