mirror of
https://github.com/liabru/matter-js.git
synced 2024-11-23 09:26:51 -05:00
Merge pull request #231 from Rantanen/patch-1
Fix the out-of-bounds check in grid broadphase
This commit is contained in:
commit
b6f6a03672
1 changed files with 2 additions and 2 deletions
|
@ -62,8 +62,8 @@ var Common = require('../core/Common');
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
// don't update out of world bodies
|
// don't update out of world bodies
|
||||||
if (body.bounds.max.x < 0 || body.bounds.min.x > world.bounds.width
|
if (body.bounds.max.x < world.bounds.min.x || body.bounds.min.x > world.bounds.max.x
|
||||||
|| body.bounds.max.y < 0 || body.bounds.min.y > world.bounds.height)
|
|| body.bounds.max.y < world.bounds.min.y || body.bounds.min.y > world.bounds.max.y)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
var newRegion = _getRegion(grid, body);
|
var newRegion = _getRegion(grid, body);
|
||||||
|
|
Loading…
Reference in a new issue