How to pause|resume motion of all ccPhysicsSprites

How to pause/resume motion of all ccPhysicsSprites

You can stop the update function of the physics world.

How to stop the update function of the physics world?

oh, so sorry i’m late.
in update function.
this.update = function( delta ) {
this.space.step( delta );
};
, then, physics world will step. if you add a controllor, like if(PHYSICS_NEED) {this.space.step( delta );},
set PHYSICS_NEED false, then physics world will not step.