Search code examples
javascriptbox2dweb

Box2dWeb reset level


My question is simple:

How can I reset or restart a world in Box2dWeb?

I need to do this when the player reloads the level he is playing.


Solution

  • The easier way is to remove world, then create it again.

    Another way is to store all initial parameters of a world and every body, and set it while restart is needed. Do not forget to remove bodies you created during play (a bullets for example), and create bodies, you removed (killed enemies, collected bonuses, etc.)