I'm currently working on a platformer game I made it quite big so it always pain to test some of its areas, I have to play from start to that location in order to check any error in between, in another way we have to put the Player at our desired location so that the game preview would start from that particular location, but its pain to do this every time. Is there any way to accomplish this thing easier? Thank you.
Develop games in your browser. Powerful, performant & highly capable.
If it's temporary and you don't want to move the real starting position of the player each time you can create a spawn point object used for testing. Add some logic that if it's in the level, set position of the player to the spawn point object.