Skip to content

Commit 15d5b54

Browse files
committed
Removed redundant updateTransform call.
1 parent c1eb456 commit 15d5b54

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ Android browser does not support Full Screen.
108108
* Added extra checks to Sound.play to stop it throwing DOM Exception Error 11 if the `sound.readyState` wasn't set or the sound was invalid. Also wrapped `stop()`` call in a `try catch`.
109109
* Time.reset would incorrectly reset the `_started` property, now maps it to `Time.time` (thanks @XekeDeath #1467)
110110
* Fix floating point inaccuracy in Tween easing edge cases (thanks @jounii #1492)
111+
* Simplified call to updateTransform - unified and verified fix for #1424 #1502
111112

112113
### Pixi.js 2.2.0 Updates
113114

src/physics/arcade/Body.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,6 @@ Phaser.Physics.Arcade.Body.prototype = {
511511

512512
this.sprite.x += this._dx;
513513
this.sprite.y += this._dy;
514-
this.sprite.updateTransform();
515514
}
516515

517516
this.center.setTo(this.position.x + this.halfWidth, this.position.y + this.halfHeight);

0 commit comments

Comments
 (0)