Skip to content

Commit

Permalink
Updated builds
Browse files Browse the repository at this point in the history
  • Loading branch information
jonobr1 committed Mar 1, 2025
1 parent 1eeaa11 commit 3562243
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build/two.js
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ var Two = (() => {
canvas: "CanvasRenderer"
},
Version: "v0.8.16",
PublishDate: "2025-02-13T23:13:24.615Z",
PublishDate: "2025-03-01T01:02:12.823Z",
Identifier: "two-",
Resolution: 12,
AutoCalculateImportedMatrices: true,
Expand Down Expand Up @@ -2863,12 +2863,12 @@ var Two = (() => {
_update(bubbles) {
if (!this._matrix.manual && this._flagMatrix) {
this._matrix.identity().translate(this.position.x, this.position.y);
this._matrix.rotate(this.rotation);
if (this._scale instanceof Vector) {
this._matrix.scale(this._scale.x, this._scale.y);
} else {
this._matrix.scale(this._scale);
}
this._matrix.rotate(this.rotation);
this._matrix.skewX(this.skewX);
this._matrix.skewY(this.skewY);
}
Expand Down
2 changes: 1 addition & 1 deletion build/two.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions build/two.module.js
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ var Constants = {
canvas: "CanvasRenderer"
},
Version: "v0.8.16",
PublishDate: "2025-02-13T23:13:24.615Z",
PublishDate: "2025-03-01T01:02:12.823Z",
Identifier: "two-",
Resolution: 12,
AutoCalculateImportedMatrices: true,
Expand Down Expand Up @@ -2881,12 +2881,12 @@ var _Shape = class extends Element {
_update(bubbles) {
if (!this._matrix.manual && this._flagMatrix) {
this._matrix.identity().translate(this.position.x, this.position.y);
this._matrix.rotate(this.rotation);
if (this._scale instanceof Vector) {
this._matrix.scale(this._scale.x, this._scale.y);
} else {
this._matrix.scale(this._scale);
}
this._matrix.rotate(this.rotation);
this._matrix.skewX(this.skewX);
this._matrix.skewY(this.skewY);
}
Expand Down

0 comments on commit 3562243

Please sign in to comment.