using Godot; public partial class SpawnPoint : Node3D { Options _Options; Reference _Reference; public override void _EnterTree() { _Reference = GetNode("/root/Reference"); _Reference.PlayerSpawnPoints = this.GetChild(0); _Reference.ItemSpawnPoints = this.GetChild(1); } }