How do I spawn randomly but make sure that objects are not spawned too close to the player's current position? Thanks!
Develop games in your browser. Powerful, performant & highly capable.
Create an object at player position, then use "Object Move at angle" action:
Object Move random(200,500) pixeld at angle random(360)
The objects will be spawned around the player, at distance from 200 to 500 pixels.
Perfect, thanks!