Fixed updateTransform bug.
This commit is contained in:
parent
d558a7b222
commit
e8d509482d
1 changed files with 2 additions and 2 deletions
|
@ -406,8 +406,8 @@ PIXI.DisplayObject.prototype.updateTransform = function()
|
|||
a01 = -this._sr * this.scale.y,
|
||||
a10 = this._sr * this.scale.x,
|
||||
a11 = this._cr * this.scale.y,
|
||||
a02 = this.position.x + a00 * px - py * a01,
|
||||
a12 = this.position.y + a11 * py - px * a10,
|
||||
a02 = this.position.x - a00 * px - py * a01,
|
||||
a12 = this.position.y - a11 * py - px * a10,
|
||||
b00 = parentTransform.a, b01 = parentTransform.b,
|
||||
b10 = parentTransform.c, b11 = parentTransform.d;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue