0
0
Fork 0
mirror of https://github.com/liabru/matter-js.git synced 2024-11-23 09:26:51 -05:00

fixed Body.setStatic

This commit is contained in:
liabru 2014-04-30 12:13:37 +01:00
parent 3065667125
commit 5f3e69cb70

View file

@ -118,6 +118,14 @@ var Body = {};
body.mass = body.inertia = body.density = Infinity;
body.inverseMass = body.inverseInertia = 0;
body.render.lineWidth = 1;
body.positionPrev.x = body.position.x;
body.positionPrev.y = body.position.y;
body.anglePrev = body.angle;
body.angularVelocity = 0;
body.speed = 0;
body.angularSpeed = 0;
body.motion = 0;
}
};