mirror of
https://github.com/liabru/matter-js.git
synced 2024-11-23 09:26:51 -05:00
Merge branch 'master' of https://github.com/rfoligno/matter-js into rfoligno-master
This commit is contained in:
commit
41b4b7f610
1 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ var Sleeping = {};
|
||||||
motion = body.speed * body.speed + body.angularSpeed * body.angularSpeed;
|
motion = body.speed * body.speed + body.angularSpeed * body.angularSpeed;
|
||||||
|
|
||||||
// wake up bodies if they have a force applied
|
// wake up bodies if they have a force applied
|
||||||
if (body.force.x > 0 || body.force.y > 0) {
|
if (body.force.x !== 0 || body.force.y !== 0) {
|
||||||
Sleeping.set(body, false);
|
Sleeping.set(body, false);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@ -84,7 +84,7 @@ var Sleeping = {};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Description
|
* Description
|
||||||
* @method set
|
* @method set
|
||||||
|
|
Loading…
Reference in a new issue