mirror of
https://github.com/photonstorm/phaser
synced 2024-11-22 20:53:39 +00:00
Merge pull request #3300 from pixelpicosean/master
Bug fix: arcade body does not align with scaled parent object
This commit is contained in:
commit
d8eeb3b760
1 changed files with 2 additions and 2 deletions
|
@ -788,8 +788,8 @@ var Body = new Class({
|
|||
|
||||
var sprite = this.gameObject;
|
||||
|
||||
this.position.x = sprite.x - sprite.displayOriginX + (sprite.scaleX * this.offset.x);
|
||||
this.position.y = sprite.y - sprite.displayOriginY + (sprite.scaleY * this.offset.y);
|
||||
this.position.x = sprite.x + sprite.scaleX * (this.offset.x - sprite.displayOriginX);
|
||||
this.position.y = sprite.y + sprite.scaleY * (this.offset.y - sprite.displayOriginY);
|
||||
|
||||
this.updateCenter();
|
||||
|
||||
|
|
Loading…
Reference in a new issue