Random Spawn or Respawn Zones

You can easily make the Player, or any object, randomly spawn across a large area either at scene start or when triggered with events. To do that, you only need one object and one event! If you want, check out the demo experience first.

  1. Add a Spawn Zone object to your scene.

  2. Scale the Spawn Zone to be as large as your level, or the area where you want the random spawn to happen inside.

  3. On the Player, or object, you want to randomly spawn at scene start, add the event:

On: Awake
Then: Myself
Respawn
at: Spawn Zone

RandomPlayerSpawn

When the scene is played, then the Player or object will immediately respawn to a random location inside the Spawn Zone!

To have the Player respawn randomly due to a different event, like losing all of their hitpoints, just enable hitpoints and add the following event to the Player:

On: Hitpoints <=
0
Then: Myself
Respawn
at: Spawn Zone

RandomPlayerRespawn

Make sure you have an object that applies damage too!

PlayerDamage