pixi.js 6.4.0 → 6.4.2

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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
- * pixi.js - v6.4.0
3
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
2
+ * pixi.js - v6.4.2
3
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
4
4
  *
5
5
  * pixi.js is licensed under the MIT License.
6
6
  * http://www.opensource.org/licenses/mit-license
@@ -420,8 +420,8 @@ var objectAssign = shouldUseNative() ? Object.assign : function (target, source)
420
420
  };
421
421
 
422
422
  /*!
423
- * @pixi/polyfill - v6.4.0
424
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
423
+ * @pixi/polyfill - v6.4.2
424
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
425
425
  *
426
426
  * @pixi/polyfill is licensed under the MIT License.
427
427
  * http://www.opensource.org/licenses/mit-license
@@ -669,8 +669,8 @@ function isMobile$3(param) {
669
669
  }
670
670
 
671
671
  /*!
672
- * @pixi/settings - v6.4.0
673
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
672
+ * @pixi/settings - v6.4.2
673
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
674
674
  *
675
675
  * @pixi/settings is licensed under the MIT License.
676
676
  * http://www.opensource.org/licenses/mit-license
@@ -730,8 +730,8 @@ function canUploadSameBuffer$1() {
730
730
  }
731
731
 
732
732
  /*!
733
- * @pixi/constants - v6.4.0
734
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
733
+ * @pixi/constants - v6.4.2
734
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
735
735
  *
736
736
  * @pixi/constants is licensed under the MIT License.
737
737
  * http://www.opensource.org/licenses/mit-license
@@ -3940,8 +3940,8 @@ var url$1 = {
3940
3940
  };
3941
3941
 
3942
3942
  /*!
3943
- * @pixi/constants - v6.4.0
3944
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
3943
+ * @pixi/constants - v6.4.2
3944
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
3945
3945
  *
3946
3946
  * @pixi/constants is licensed under the MIT License.
3947
3947
  * http://www.opensource.org/licenses/mit-license
@@ -4434,8 +4434,8 @@ var BUFFER_TYPE$4;
4434
4434
  })(BUFFER_TYPE$4 || (BUFFER_TYPE$4 = {}));
4435
4435
 
4436
4436
  /*!
4437
- * @pixi/utils - v6.4.0
4438
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
4437
+ * @pixi/utils - v6.4.2
4438
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
4439
4439
  *
4440
4440
  * @pixi/utils is licensed under the MIT License.
4441
4441
  * http://www.opensource.org/licenses/mit-license
@@ -4491,7 +4491,7 @@ settings$1.RETINA_PREFIX = /@([0-9\.]+)x/;
4491
4491
  settings$1.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT = false;
4492
4492
 
4493
4493
  var saidHello = false;
4494
- var VERSION$1 = '6.4.0';
4494
+ var VERSION$1 = '6.4.2';
4495
4495
  /**
4496
4496
  * Skips the hello message of renderers that are created after this is run.
4497
4497
  * @function skipHello
@@ -5620,8 +5620,8 @@ var utils = {
5620
5620
  };
5621
5621
 
5622
5622
  /*!
5623
- * @pixi/math - v6.4.0
5624
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
5623
+ * @pixi/math - v6.4.2
5624
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
5625
5625
  *
5626
5626
  * @pixi/math is licensed under the MIT License.
5627
5627
  * http://www.opensource.org/licenses/mit-license
@@ -7203,8 +7203,8 @@ var Transform = /** @class */ (function () {
7203
7203
  }());
7204
7204
 
7205
7205
  /*!
7206
- * @pixi/display - v6.4.0
7207
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
7206
+ * @pixi/display - v6.4.2
7207
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
7208
7208
  *
7209
7209
  * @pixi/display is licensed under the MIT License.
7210
7210
  * http://www.opensource.org/licenses/mit-license
@@ -8310,7 +8310,9 @@ var DisplayObject$1 = /** @class */ (function (_super) {
8310
8310
  * Sets a mask for the displayObject. A mask is an object that limits the visibility of an
8311
8311
  * object to the shape of the mask applied to it. In PixiJS a regular mask must be a
8312
8312
  * {@link PIXI.Graphics} or a {@link PIXI.Sprite} object. This allows for much faster masking in canvas as it
8313
- * utilities shape clipping. To remove a mask, set this property to `null`.
8313
+ * utilities shape clipping. Furthermore, a mask of an object must be in the subtree of its parent.
8314
+ * Otherwise, `getLocalBounds` may calculate incorrect bounds, which makes the container's width and height wrong.
8315
+ * To remove a mask, set this property to `null`.
8314
8316
  *
8315
8317
  * For sprite mask both alpha and red channel are used. Black mask is the same as transparent mask.
8316
8318
  * @example
@@ -8374,8 +8376,8 @@ var TemporaryDisplayObject$1 = /** @class */ (function (_super) {
8374
8376
  DisplayObject$1.prototype.displayObjectUpdateTransform = DisplayObject$1.prototype.updateTransform;
8375
8377
 
8376
8378
  /*!
8377
- * @pixi/constants - v6.4.0
8378
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
8379
+ * @pixi/constants - v6.4.2
8380
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
8379
8381
  *
8380
8382
  * @pixi/constants is licensed under the MIT License.
8381
8383
  * http://www.opensource.org/licenses/mit-license
@@ -9457,8 +9459,8 @@ var Container$1 = /** @class */ (function (_super) {
9457
9459
  Container$1.prototype.containerUpdateTransform = Container$1.prototype.updateTransform;
9458
9460
 
9459
9461
  /*!
9460
- * @pixi/accessibility - v6.4.0
9461
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
9462
+ * @pixi/accessibility - v6.4.2
9463
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
9462
9464
  *
9463
9465
  * @pixi/accessibility is licensed under the MIT License.
9464
9466
  * http://www.opensource.org/licenses/mit-license
@@ -9975,8 +9977,8 @@ var AccessibilityManager = /** @class */ (function () {
9975
9977
  }());
9976
9978
 
9977
9979
  /*!
9978
- * @pixi/ticker - v6.4.0
9979
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
9980
+ * @pixi/ticker - v6.4.2
9981
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
9980
9982
  *
9981
9983
  * @pixi/ticker is licensed under the MIT License.
9982
9984
  * http://www.opensource.org/licenses/mit-license
@@ -10679,8 +10681,8 @@ var TickerPlugin = /** @class */ (function () {
10679
10681
  }());
10680
10682
 
10681
10683
  /*!
10682
- * @pixi/interaction - v6.4.0
10683
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
10684
+ * @pixi/interaction - v6.4.2
10685
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
10684
10686
  *
10685
10687
  * @pixi/interaction is licensed under the MIT License.
10686
10688
  * http://www.opensource.org/licenses/mit-license
@@ -12491,8 +12493,8 @@ var InteractionManager = /** @class */ (function (_super) {
12491
12493
  }(eventemitter3));
12492
12494
 
12493
12495
  /*!
12494
- * @pixi/runner - v6.4.0
12495
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
12496
+ * @pixi/runner - v6.4.2
12497
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
12496
12498
  *
12497
12499
  * @pixi/runner is licensed under the MIT License.
12498
12500
  * http://www.opensource.org/licenses/mit-license
@@ -12675,8 +12677,8 @@ Object.defineProperties(Runner.prototype, {
12675
12677
  });
12676
12678
 
12677
12679
  /*!
12678
- * @pixi/core - v6.4.0
12679
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
12680
+ * @pixi/core - v6.4.2
12681
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
12680
12682
  *
12681
12683
  * @pixi/core is licensed under the MIT License.
12682
12684
  * http://www.opensource.org/licenses/mit-license
@@ -22866,8 +22868,8 @@ for (var name in _systems) {
22866
22868
  }
22867
22869
 
22868
22870
  /*!
22869
- * @pixi/app - v6.4.0
22870
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
22871
+ * @pixi/app - v6.4.2
22872
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
22871
22873
  *
22872
22874
  * @pixi/app is licensed under the MIT License.
22873
22875
  * http://www.opensource.org/licenses/mit-license
@@ -23123,8 +23125,8 @@ var ResizePlugin = /** @class */ (function () {
23123
23125
  Application.registerPlugin(ResizePlugin);
23124
23126
 
23125
23127
  /*!
23126
- * @pixi/extract - v6.4.0
23127
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
23128
+ * @pixi/extract - v6.4.2
23129
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
23128
23130
  *
23129
23131
  * @pixi/extract is licensed under the MIT License.
23130
23132
  * http://www.opensource.org/licenses/mit-license
@@ -23256,8 +23258,8 @@ function isMobile$1(param) {
23256
23258
  }
23257
23259
 
23258
23260
  /*!
23259
- * @pixi/settings - v6.4.0
23260
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
23261
+ * @pixi/settings - v6.4.2
23262
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
23261
23263
  *
23262
23264
  * @pixi/settings is licensed under the MIT License.
23263
23265
  * http://www.opensource.org/licenses/mit-license
@@ -23317,8 +23319,8 @@ function canUploadSameBuffer() {
23317
23319
  }
23318
23320
 
23319
23321
  /*!
23320
- * @pixi/constants - v6.4.0
23321
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
23322
+ * @pixi/constants - v6.4.2
23323
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
23322
23324
  *
23323
23325
  * @pixi/constants is licensed under the MIT License.
23324
23326
  * http://www.opensource.org/licenses/mit-license
@@ -24019,8 +24021,8 @@ var settings = {
24019
24021
  };
24020
24022
 
24021
24023
  /*!
24022
- * @pixi/display - v6.4.0
24023
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
24024
+ * @pixi/display - v6.4.2
24025
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
24024
24026
  *
24025
24027
  * @pixi/display is licensed under the MIT License.
24026
24028
  * http://www.opensource.org/licenses/mit-license
@@ -25126,7 +25128,9 @@ var DisplayObject = /** @class */ (function (_super) {
25126
25128
  * Sets a mask for the displayObject. A mask is an object that limits the visibility of an
25127
25129
  * object to the shape of the mask applied to it. In PixiJS a regular mask must be a
25128
25130
  * {@link PIXI.Graphics} or a {@link PIXI.Sprite} object. This allows for much faster masking in canvas as it
25129
- * utilities shape clipping. To remove a mask, set this property to `null`.
25131
+ * utilities shape clipping. Furthermore, a mask of an object must be in the subtree of its parent.
25132
+ * Otherwise, `getLocalBounds` may calculate incorrect bounds, which makes the container's width and height wrong.
25133
+ * To remove a mask, set this property to `null`.
25130
25134
  *
25131
25135
  * For sprite mask both alpha and red channel are used. Black mask is the same as transparent mask.
25132
25136
  * @example
@@ -25190,8 +25194,8 @@ var TemporaryDisplayObject = /** @class */ (function (_super) {
25190
25194
  DisplayObject.prototype.displayObjectUpdateTransform = DisplayObject.prototype.updateTransform;
25191
25195
 
25192
25196
  /*!
25193
- * @pixi/constants - v6.4.0
25194
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
25197
+ * @pixi/constants - v6.4.2
25198
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
25195
25199
  *
25196
25200
  * @pixi/constants is licensed under the MIT License.
25197
25201
  * http://www.opensource.org/licenses/mit-license
@@ -26480,8 +26484,8 @@ var Extract = /** @class */ (function () {
26480
26484
  }());
26481
26485
 
26482
26486
  /*!
26483
- * @pixi/loaders - v6.4.0
26484
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
26487
+ * @pixi/loaders - v6.4.2
26488
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
26485
26489
  *
26486
26490
  * @pixi/loaders is licensed under the MIT License.
26487
26491
  * http://www.opensource.org/licenses/mit-license
@@ -28395,8 +28399,8 @@ Loader.registerPlugin({ use: parsing });
28395
28399
  Loader.registerPlugin(TextureLoader);
28396
28400
 
28397
28401
  /*!
28398
- * @pixi/compressed-textures - v6.4.0
28399
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
28402
+ * @pixi/compressed-textures - v6.4.2
28403
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
28400
28404
  *
28401
28405
  * @pixi/compressed-textures is licensed under the MIT License.
28402
28406
  * http://www.opensource.org/licenses/mit-license
@@ -29730,8 +29734,8 @@ var KTXLoader = /** @class */ (function () {
29730
29734
  }());
29731
29735
 
29732
29736
  /*!
29733
- * @pixi/particle-container - v6.4.0
29734
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
29737
+ * @pixi/particle-container - v6.4.2
29738
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
29735
29739
  *
29736
29740
  * @pixi/particle-container is licensed under the MIT License.
29737
29741
  * http://www.opensource.org/licenses/mit-license
@@ -30386,8 +30390,8 @@ var ParticleRenderer = /** @class */ (function (_super) {
30386
30390
  }(ObjectRenderer));
30387
30391
 
30388
30392
  /*!
30389
- * @pixi/graphics - v6.4.0
30390
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
30393
+ * @pixi/graphics - v6.4.2
30394
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
30391
30395
  *
30392
30396
  * @pixi/graphics is licensed under the MIT License.
30393
30397
  * http://www.opensource.org/licenses/mit-license
@@ -33322,8 +33326,8 @@ var graphicsUtils = {
33322
33326
  };
33323
33327
 
33324
33328
  /*!
33325
- * @pixi/sprite - v6.4.0
33326
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
33329
+ * @pixi/sprite - v6.4.2
33330
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
33327
33331
  *
33328
33332
  * @pixi/sprite is licensed under the MIT License.
33329
33333
  * http://www.opensource.org/licenses/mit-license
@@ -33768,8 +33772,8 @@ var Sprite = /** @class */ (function (_super) {
33768
33772
  }(Container$1));
33769
33773
 
33770
33774
  /*!
33771
- * @pixi/text - v6.4.0
33772
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
33775
+ * @pixi/text - v6.4.2
33776
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
33773
33777
  *
33774
33778
  * @pixi/text is licensed under the MIT License.
33775
33779
  * http://www.opensource.org/licenses/mit-license
@@ -35666,8 +35670,8 @@ var Text = /** @class */ (function (_super) {
35666
35670
  }(Sprite));
35667
35671
 
35668
35672
  /*!
35669
- * @pixi/prepare - v6.4.0
35670
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
35673
+ * @pixi/prepare - v6.4.2
35674
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
35671
35675
  *
35672
35676
  * @pixi/prepare is licensed under the MIT License.
35673
35677
  * http://www.opensource.org/licenses/mit-license
@@ -36191,8 +36195,8 @@ var TimeLimiter = /** @class */ (function () {
36191
36195
  }());
36192
36196
 
36193
36197
  /*!
36194
- * @pixi/spritesheet - v6.4.0
36195
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
36198
+ * @pixi/spritesheet - v6.4.2
36199
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
36196
36200
  *
36197
36201
  * @pixi/spritesheet is licensed under the MIT License.
36198
36202
  * http://www.opensource.org/licenses/mit-license
@@ -36503,8 +36507,8 @@ var SpritesheetLoader = /** @class */ (function () {
36503
36507
  }());
36504
36508
 
36505
36509
  /*!
36506
- * @pixi/sprite-tiling - v6.4.0
36507
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
36510
+ * @pixi/sprite-tiling - v6.4.2
36511
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
36508
36512
  *
36509
36513
  * @pixi/sprite-tiling is licensed under the MIT License.
36510
36514
  * http://www.opensource.org/licenses/mit-license
@@ -36851,8 +36855,8 @@ var TilingSpriteRenderer = /** @class */ (function (_super) {
36851
36855
  }(ObjectRenderer));
36852
36856
 
36853
36857
  /*!
36854
- * @pixi/mesh - v6.4.0
36855
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
36858
+ * @pixi/mesh - v6.4.2
36859
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
36856
36860
  *
36857
36861
  * @pixi/mesh is licensed under the MIT License.
36858
36862
  * http://www.opensource.org/licenses/mit-license
@@ -37422,8 +37426,8 @@ var MeshGeometry = /** @class */ (function (_super) {
37422
37426
  }(Geometry));
37423
37427
 
37424
37428
  /*!
37425
- * @pixi/text-bitmap - v6.4.0
37426
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
37429
+ * @pixi/text-bitmap - v6.4.2
37430
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
37427
37431
  *
37428
37432
  * @pixi/text-bitmap is licensed under the MIT License.
37429
37433
  * http://www.opensource.org/licenses/mit-license
@@ -39011,8 +39015,8 @@ var BitmapFontLoader = /** @class */ (function () {
39011
39015
  }());
39012
39016
 
39013
39017
  /*!
39014
- * @pixi/filter-alpha - v6.4.0
39015
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
39018
+ * @pixi/filter-alpha - v6.4.2
39019
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
39016
39020
  *
39017
39021
  * @pixi/filter-alpha is licensed under the MIT License.
39018
39022
  * http://www.opensource.org/licenses/mit-license
@@ -39092,8 +39096,8 @@ var AlphaFilter = /** @class */ (function (_super) {
39092
39096
  }(Filter));
39093
39097
 
39094
39098
  /*!
39095
- * @pixi/filter-blur - v6.4.0
39096
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
39099
+ * @pixi/filter-blur - v6.4.2
39100
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
39097
39101
  *
39098
39102
  * @pixi/filter-blur is licensed under the MIT License.
39099
39103
  * http://www.opensource.org/licenses/mit-license
@@ -39190,8 +39194,8 @@ function generateBlurFragSource(kernelSize) {
39190
39194
  }
39191
39195
 
39192
39196
  /*!
39193
- * @pixi/constants - v6.4.0
39194
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
39197
+ * @pixi/constants - v6.4.2
39198
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
39195
39199
  *
39196
39200
  * @pixi/constants is licensed under the MIT License.
39197
39201
  * http://www.opensource.org/licenses/mit-license
@@ -39953,8 +39957,8 @@ var BlurFilter = /** @class */ (function (_super) {
39953
39957
  }(Filter));
39954
39958
 
39955
39959
  /*!
39956
- * @pixi/filter-color-matrix - v6.4.0
39957
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
39960
+ * @pixi/filter-color-matrix - v6.4.2
39961
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
39958
39962
  *
39959
39963
  * @pixi/filter-color-matrix is licensed under the MIT License.
39960
39964
  * http://www.opensource.org/licenses/mit-license
@@ -40466,8 +40470,8 @@ var ColorMatrixFilter = /** @class */ (function (_super) {
40466
40470
  ColorMatrixFilter.prototype.grayscale = ColorMatrixFilter.prototype.greyscale;
40467
40471
 
40468
40472
  /*!
40469
- * @pixi/filter-displacement - v6.4.0
40470
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
40473
+ * @pixi/filter-displacement - v6.4.2
40474
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
40471
40475
  *
40472
40476
  * @pixi/filter-displacement is licensed under the MIT License.
40473
40477
  * http://www.opensource.org/licenses/mit-license
@@ -40589,8 +40593,8 @@ var DisplacementFilter = /** @class */ (function (_super) {
40589
40593
  }(Filter));
40590
40594
 
40591
40595
  /*!
40592
- * @pixi/filter-fxaa - v6.4.0
40593
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
40596
+ * @pixi/filter-fxaa - v6.4.2
40597
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
40594
40598
  *
40595
40599
  * @pixi/filter-fxaa is licensed under the MIT License.
40596
40600
  * http://www.opensource.org/licenses/mit-license
@@ -40645,8 +40649,8 @@ var FXAAFilter = /** @class */ (function (_super) {
40645
40649
  }(Filter));
40646
40650
 
40647
40651
  /*!
40648
- * @pixi/filter-noise - v6.4.0
40649
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
40652
+ * @pixi/filter-noise - v6.4.2
40653
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
40650
40654
  *
40651
40655
  * @pixi/filter-noise is licensed under the MIT License.
40652
40656
  * http://www.opensource.org/licenses/mit-license
@@ -40736,16 +40740,16 @@ var NoiseFilter = /** @class */ (function (_super) {
40736
40740
  }(Filter));
40737
40741
 
40738
40742
  /*!
40739
- * @pixi/mixin-cache-as-bitmap - v6.4.0
40740
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
40743
+ * @pixi/mixin-cache-as-bitmap - v6.4.2
40744
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
40741
40745
  *
40742
40746
  * @pixi/mixin-cache-as-bitmap is licensed under the MIT License.
40743
40747
  * http://www.opensource.org/licenses/mit-license
40744
40748
  */
40745
40749
 
40746
40750
  /*!
40747
- * @pixi/constants - v6.4.0
40748
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
40751
+ * @pixi/constants - v6.4.2
40752
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
40749
40753
  *
40750
40754
  * @pixi/constants is licensed under the MIT License.
40751
40755
  * http://www.opensource.org/licenses/mit-license
@@ -41603,8 +41607,8 @@ DisplayObject$1.prototype._cacheAsBitmapDestroy = function _cacheAsBitmapDestroy
41603
41607
  };
41604
41608
 
41605
41609
  /*!
41606
- * @pixi/mixin-get-child-by-name - v6.4.0
41607
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
41610
+ * @pixi/mixin-get-child-by-name - v6.4.2
41611
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
41608
41612
  *
41609
41613
  * @pixi/mixin-get-child-by-name is licensed under the MIT License.
41610
41614
  * http://www.opensource.org/licenses/mit-license
@@ -41648,8 +41652,8 @@ Container$1.prototype.getChildByName = function getChildByName(name, deep) {
41648
41652
  };
41649
41653
 
41650
41654
  /*!
41651
- * @pixi/mixin-get-global-position - v6.4.0
41652
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
41655
+ * @pixi/mixin-get-global-position - v6.4.2
41656
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
41653
41657
  *
41654
41658
  * @pixi/mixin-get-global-position is licensed under the MIT License.
41655
41659
  * http://www.opensource.org/licenses/mit-license
@@ -41679,8 +41683,8 @@ DisplayObject$1.prototype.getGlobalPosition = function getGlobalPosition(point,
41679
41683
  };
41680
41684
 
41681
41685
  /*!
41682
- * @pixi/mesh-extras - v6.4.0
41683
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
41686
+ * @pixi/mesh-extras - v6.4.2
41687
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
41684
41688
  *
41685
41689
  * @pixi/mesh-extras is licensed under the MIT License.
41686
41690
  * http://www.opensource.org/licenses/mit-license
@@ -42303,8 +42307,8 @@ var NineSlicePlane = /** @class */ (function (_super) {
42303
42307
  }(SimplePlane));
42304
42308
 
42305
42309
  /*!
42306
- * @pixi/sprite-animated - v6.4.0
42307
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
42310
+ * @pixi/sprite-animated - v6.4.2
42311
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
42308
42312
  *
42309
42313
  * @pixi/sprite-animated is licensed under the MIT License.
42310
42314
  * http://www.opensource.org/licenses/mit-license
@@ -42665,7 +42669,7 @@ Application.registerPlugin(AppLoaderPlugin);
42665
42669
  * @name VERSION
42666
42670
  * @type {string}
42667
42671
  */
42668
- var VERSION = '6.4.0';
42672
+ var VERSION = '6.4.2';
42669
42673
  /**
42670
42674
  * @namespace PIXI
42671
42675
  */