@next2d/core 1.18.3 → 1.18.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/Player.d.ts CHANGED
@@ -138,6 +138,18 @@ export declare class Player {
138
138
  * @public
139
139
  */
140
140
  get scaleY(): number;
141
+ /**
142
+ * @member {number}
143
+ * @readonly
144
+ * @public
145
+ */
146
+ get tx(): number;
147
+ /**
148
+ * @member {number}
149
+ * @readonly
150
+ * @public
151
+ */
152
+ get ty(): number;
141
153
  /**
142
154
  * @member {string}
143
155
  * @public
package/dist/Player.js CHANGED
@@ -411,6 +411,22 @@ export class Player {
411
411
  get scaleY() {
412
412
  return this._$matrix[3];
413
413
  }
414
+ /**
415
+ * @member {number}
416
+ * @readonly
417
+ * @public
418
+ */
419
+ get tx() {
420
+ return this._$matrix[4];
421
+ }
422
+ /**
423
+ * @member {number}
424
+ * @readonly
425
+ * @public
426
+ */
427
+ get ty() {
428
+ return this._$matrix[5];
429
+ }
414
430
  /**
415
431
  * @member {string}
416
432
  * @public
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@next2d/core",
3
- "version": "1.18.3",
3
+ "version": "1.18.4",
4
4
  "description": "Next2D Core Packages",
5
5
  "author": "Toshiyuki Ienaga<ienaga@tvon.jp> (https://github.com/ienaga/)",
6
6
  "license": "MIT",
@@ -32,16 +32,16 @@
32
32
  "url": "git+https://github.com/Next2D/Player.git"
33
33
  },
34
34
  "peerDependencies": {
35
- "@next2d/interface": "1.18.3",
36
- "@next2d/webgl": "1.18.3",
37
- "@next2d/display": "1.18.3",
38
- "@next2d/core": "1.18.3",
39
- "@next2d/net": "1.18.3",
40
- "@next2d/share": "1.18.3",
41
- "@next2d/events": "1.18.3",
42
- "@next2d/media": "1.18.3",
43
- "@next2d/text": "1.18.3",
44
- "@next2d/geom": "1.18.3",
45
- "@next2d/util": "1.18.3"
35
+ "@next2d/interface": "1.18.4",
36
+ "@next2d/webgl": "1.18.4",
37
+ "@next2d/display": "1.18.4",
38
+ "@next2d/core": "1.18.4",
39
+ "@next2d/net": "1.18.4",
40
+ "@next2d/share": "1.18.4",
41
+ "@next2d/events": "1.18.4",
42
+ "@next2d/media": "1.18.4",
43
+ "@next2d/text": "1.18.4",
44
+ "@next2d/geom": "1.18.4",
45
+ "@next2d/util": "1.18.4"
46
46
  }
47
47
  }