chandlerprall / Physijs

Physics plugin for Three.js
MIT License
2.77k stars 455 forks source link

Objects after coming to rest are stuck in that state. #322

Open CodeInKlingon opened 4 years ago

CodeInKlingon commented 4 years ago

Please include an option to prevent objects from going to sleep. This issue got me stuck for quite a while and I ended up having to apply an impulse of 0 to all objects to wake them up.

var impusle = new THREE.Vector3; impusle.set( 0, 0, 0 ); object.applyCentralImpulse( impusle);