pixi.js 7.2.0 → 7.2.1
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/pixi.js +8 -8
- package/dist/pixi.js.map +1 -1
- package/dist/pixi.min.js +5 -5
- package/dist/pixi.min.js.map +1 -1
- package/dist/pixi.min.mjs +5 -5
- package/dist/pixi.min.mjs.map +1 -1
- package/dist/pixi.mjs +8 -8
- package/dist/pixi.mjs.map +1 -1
- package/package.json +31 -31
package/dist/pixi.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* pixi.js - v7.2.
|
|
3
|
-
* Compiled
|
|
2
|
+
* pixi.js - v7.2.1
|
|
3
|
+
* Compiled Fri, 17 Mar 2023 16:54:13 UTC
|
|
4
4
|
*
|
|
5
5
|
* pixi.js is licensed under the MIT License.
|
|
6
6
|
* http://www.opensource.org/licenses/mit-license
|
|
@@ -10358,7 +10358,7 @@ ${this.fragmentSrc}`;
|
|
|
10358
10358
|
const { renderer } = this;
|
|
10359
10359
|
renderer.runners.init.emit(renderer.options);
|
|
10360
10360
|
if (options.hello) {
|
|
10361
|
-
console.log(`PixiJS ${"7.2.
|
|
10361
|
+
console.log(`PixiJS ${"7.2.1"} - ${renderer.rendererLogId} - https://pixijs.com`);
|
|
10362
10362
|
}
|
|
10363
10363
|
renderer.resize(renderer.screen.width, renderer.screen.height);
|
|
10364
10364
|
}
|
|
@@ -12544,7 +12544,7 @@ ${this.fragmentSrc}`;
|
|
|
12544
12544
|
}
|
|
12545
12545
|
}
|
|
12546
12546
|
|
|
12547
|
-
const VERSION = "7.2.
|
|
12547
|
+
const VERSION = "7.2.1";
|
|
12548
12548
|
|
|
12549
12549
|
class Bounds {
|
|
12550
12550
|
constructor() {
|
|
@@ -14989,10 +14989,10 @@ ${this.fragmentSrc}`;
|
|
|
14989
14989
|
this.propagationImmediatelyStopped = false;
|
|
14990
14990
|
this.layer = new Point();
|
|
14991
14991
|
this.page = new Point();
|
|
14992
|
-
this.AT_TARGET = 1;
|
|
14993
|
-
this.BUBBLING_PHASE = 2;
|
|
14994
|
-
this.CAPTURING_PHASE = 3;
|
|
14995
14992
|
this.NONE = 0;
|
|
14993
|
+
this.CAPTURING_PHASE = 1;
|
|
14994
|
+
this.AT_TARGET = 2;
|
|
14995
|
+
this.BUBBLING_PHASE = 3;
|
|
14996
14996
|
this.manager = manager;
|
|
14997
14997
|
}
|
|
14998
14998
|
get layerX() {
|
|
@@ -15300,7 +15300,7 @@ ${this.fragmentSrc}`;
|
|
|
15300
15300
|
if (displayObject.isMask) {
|
|
15301
15301
|
return true;
|
|
15302
15302
|
}
|
|
15303
|
-
if (this._collectInteractiveElements
|
|
15303
|
+
if (this._collectInteractiveElements)
|
|
15304
15304
|
return false;
|
|
15305
15305
|
if (displayObject.hitArea) {
|
|
15306
15306
|
displayObject.worldTransform.applyInverse(location, tempLocalMapping);
|