We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dea9a06 commit 3ab9da8Copy full SHA for 3ab9da8
1 file changed
src/physics/arcade/World.js
@@ -1349,10 +1349,10 @@ var World = new Class({
1349
resultY = SeparateY(body1, body2, overlapOnly, this.OVERLAP_BIAS);
1350
1351
// Are they still intersecting? Let's do the other axis then
1352
- if (this.intersects(body1, body2))
1353
- {
1354
- resultX = SeparateX(body1, body2, overlapOnly, this.OVERLAP_BIAS);
1355
- }
+ // if (this.intersects(body1, body2))
+ // {
+ // resultX = SeparateX(body1, body2, overlapOnly, this.OVERLAP_BIAS);
+ // }
1356
}
1357
1358
var result = (resultX || resultY);
0 commit comments