I'm trying to make a roguelike shooter and have the level generator implemented but can't spawn the player. I have red markers in the corners of each room and in the middle and want the player to start at a randomly chosen marker on the map. How do I randomly choose an instance and use it to spawn my player?
I've tried this:
On start of layout | Player > Set position to (Marker.X, Marker.Y)
Pick a random Marker instance
But it hasn't worked. I guess a better thing to ask would be how to reference the marker that was chosen?