setAngularFactor for Havok

I think you can set inertia of mass properties to 0 for every rotation axis. So angularVelocity is multiplied by 0.

sphereAggregate.body.setMassProperties({
    inertia: new BABYLON.Vector3(0, 0, 0)
});

Example PG:

6 Likes