We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efe6330 commit 9269aa7Copy full SHA for 9269aa7
1 file changed
src/gameobjects/components/Transform.js
@@ -426,8 +426,8 @@ var Transform = {
426
parent = parents[i];
427
428
tempMatrix.translate(parent.x, parent.y);
429
- tempMatrix.rotate(parent._rotation);
430
- tempMatrix.scale(parent._scaleX, parent._scaleY);
+ tempMatrix.rotate(parent.rotation);
+ tempMatrix.scale(parent.scaleX, parent.scaleY);
431
}
432
433
tempMatrix.translate(this.x, this.y);
0 commit comments