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.mjs
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
|
|
@@ -10355,7 +10355,7 @@ class StartupSystem {
|
|
|
10355
10355
|
const { renderer } = this;
|
|
10356
10356
|
renderer.runners.init.emit(renderer.options);
|
|
10357
10357
|
if (options.hello) {
|
|
10358
|
-
console.log(`PixiJS ${"7.2.
|
|
10358
|
+
console.log(`PixiJS ${"7.2.1"} - ${renderer.rendererLogId} - https://pixijs.com`);
|
|
10359
10359
|
}
|
|
10360
10360
|
renderer.resize(renderer.screen.width, renderer.screen.height);
|
|
10361
10361
|
}
|
|
@@ -12541,7 +12541,7 @@ class TransformFeedback {
|
|
|
12541
12541
|
}
|
|
12542
12542
|
}
|
|
12543
12543
|
|
|
12544
|
-
const VERSION = "7.2.
|
|
12544
|
+
const VERSION = "7.2.1";
|
|
12545
12545
|
|
|
12546
12546
|
class Bounds {
|
|
12547
12547
|
constructor() {
|
|
@@ -14986,10 +14986,10 @@ class FederatedEvent {
|
|
|
14986
14986
|
this.propagationImmediatelyStopped = false;
|
|
14987
14987
|
this.layer = new Point();
|
|
14988
14988
|
this.page = new Point();
|
|
14989
|
-
this.AT_TARGET = 1;
|
|
14990
|
-
this.BUBBLING_PHASE = 2;
|
|
14991
|
-
this.CAPTURING_PHASE = 3;
|
|
14992
14989
|
this.NONE = 0;
|
|
14990
|
+
this.CAPTURING_PHASE = 1;
|
|
14991
|
+
this.AT_TARGET = 2;
|
|
14992
|
+
this.BUBBLING_PHASE = 3;
|
|
14993
14993
|
this.manager = manager;
|
|
14994
14994
|
}
|
|
14995
14995
|
get layerX() {
|
|
@@ -15297,7 +15297,7 @@ class EventBoundary {
|
|
|
15297
15297
|
if (displayObject.isMask) {
|
|
15298
15298
|
return true;
|
|
15299
15299
|
}
|
|
15300
|
-
if (this._collectInteractiveElements
|
|
15300
|
+
if (this._collectInteractiveElements)
|
|
15301
15301
|
return false;
|
|
15302
15302
|
if (displayObject.hitArea) {
|
|
15303
15303
|
displayObject.worldTransform.applyInverse(location, tempLocalMapping);
|