We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86584a6 commit f468824Copy full SHA for f468824
1 file changed
src/physics/arcade/ArcadePhysics.js
@@ -697,6 +697,8 @@ Phaser.Physics.Arcade.prototype = {
697
body2.x += this._overlap;
698
body2.velocity.x = this._velocity1 - this._velocity2 * body2.bounce.x;
699
}
700
+ body1.updateHulls();
701
+ body2.updateHulls();
702
703
return true;
704
@@ -817,6 +819,8 @@ Phaser.Physics.Arcade.prototype = {
817
819
body2.x += body1.x - body1.lastX;
818
820
821
822
823
824
825
826
0 commit comments