To clarify - ammo.js
is a port of Bullet Physics using mscripten
I have a character (essentially a block) that needs to be pushed with force. I have tried (I think) all of the methods for forces but I still cannot move the block.
setVelocity(1,0,0)
does not even move the block - it just stops gravity from acting on it!
applyImpulse([0,0,200000],[0,0,0])
does absolutely nothing.
applyForce([0,0,200000],[0,0,0])
does absolutely nothing.