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
@@ -423,8 +423,8 @@ var PIXI = (function (exports) {
423
423
  };
424
424
 
425
425
  /*!
426
- * @pixi/polyfill - v6.4.0
427
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
426
+ * @pixi/polyfill - v6.4.2
427
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
428
428
  *
429
429
  * @pixi/polyfill is licensed under the MIT License.
430
430
  * http://www.opensource.org/licenses/mit-license
@@ -672,8 +672,8 @@ var PIXI = (function (exports) {
672
672
  }
673
673
 
674
674
  /*!
675
- * @pixi/settings - v6.4.0
676
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
675
+ * @pixi/settings - v6.4.2
676
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
677
677
  *
678
678
  * @pixi/settings is licensed under the MIT License.
679
679
  * http://www.opensource.org/licenses/mit-license
@@ -733,8 +733,8 @@ var PIXI = (function (exports) {
733
733
  }
734
734
 
735
735
  /*!
736
- * @pixi/constants - v6.4.0
737
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
736
+ * @pixi/constants - v6.4.2
737
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
738
738
  *
739
739
  * @pixi/constants is licensed under the MIT License.
740
740
  * http://www.opensource.org/licenses/mit-license
@@ -3943,8 +3943,8 @@ var PIXI = (function (exports) {
3943
3943
  };
3944
3944
 
3945
3945
  /*!
3946
- * @pixi/constants - v6.4.0
3947
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
3946
+ * @pixi/constants - v6.4.2
3947
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
3948
3948
  *
3949
3949
  * @pixi/constants is licensed under the MIT License.
3950
3950
  * http://www.opensource.org/licenses/mit-license
@@ -4437,8 +4437,8 @@ var PIXI = (function (exports) {
4437
4437
  })(exports.BUFFER_TYPE || (exports.BUFFER_TYPE = {}));
4438
4438
 
4439
4439
  /*!
4440
- * @pixi/utils - v6.4.0
4441
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
4440
+ * @pixi/utils - v6.4.2
4441
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
4442
4442
  *
4443
4443
  * @pixi/utils is licensed under the MIT License.
4444
4444
  * http://www.opensource.org/licenses/mit-license
@@ -4494,7 +4494,7 @@ var PIXI = (function (exports) {
4494
4494
  settings$1.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT = false;
4495
4495
 
4496
4496
  var saidHello = false;
4497
- var VERSION$1 = '6.4.0';
4497
+ var VERSION$1 = '6.4.2';
4498
4498
  /**
4499
4499
  * Skips the hello message of renderers that are created after this is run.
4500
4500
  * @function skipHello
@@ -5623,8 +5623,8 @@ var PIXI = (function (exports) {
5623
5623
  };
5624
5624
 
5625
5625
  /*!
5626
- * @pixi/math - v6.4.0
5627
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
5626
+ * @pixi/math - v6.4.2
5627
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
5628
5628
  *
5629
5629
  * @pixi/math is licensed under the MIT License.
5630
5630
  * http://www.opensource.org/licenses/mit-license
@@ -7206,8 +7206,8 @@ var PIXI = (function (exports) {
7206
7206
  }());
7207
7207
 
7208
7208
  /*!
7209
- * @pixi/display - v6.4.0
7210
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
7209
+ * @pixi/display - v6.4.2
7210
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
7211
7211
  *
7212
7212
  * @pixi/display is licensed under the MIT License.
7213
7213
  * http://www.opensource.org/licenses/mit-license
@@ -8313,7 +8313,9 @@ var PIXI = (function (exports) {
8313
8313
  * Sets a mask for the displayObject. A mask is an object that limits the visibility of an
8314
8314
  * object to the shape of the mask applied to it. In PixiJS a regular mask must be a
8315
8315
  * {@link PIXI.Graphics} or a {@link PIXI.Sprite} object. This allows for much faster masking in canvas as it
8316
- * utilities shape clipping. To remove a mask, set this property to `null`.
8316
+ * utilities shape clipping. Furthermore, a mask of an object must be in the subtree of its parent.
8317
+ * Otherwise, `getLocalBounds` may calculate incorrect bounds, which makes the container's width and height wrong.
8318
+ * To remove a mask, set this property to `null`.
8317
8319
  *
8318
8320
  * For sprite mask both alpha and red channel are used. Black mask is the same as transparent mask.
8319
8321
  * @example
@@ -8377,8 +8379,8 @@ var PIXI = (function (exports) {
8377
8379
  DisplayObject$1.prototype.displayObjectUpdateTransform = DisplayObject$1.prototype.updateTransform;
8378
8380
 
8379
8381
  /*!
8380
- * @pixi/constants - v6.4.0
8381
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
8382
+ * @pixi/constants - v6.4.2
8383
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
8382
8384
  *
8383
8385
  * @pixi/constants is licensed under the MIT License.
8384
8386
  * http://www.opensource.org/licenses/mit-license
@@ -9460,8 +9462,8 @@ var PIXI = (function (exports) {
9460
9462
  Container$1.prototype.containerUpdateTransform = Container$1.prototype.updateTransform;
9461
9463
 
9462
9464
  /*!
9463
- * @pixi/accessibility - v6.4.0
9464
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
9465
+ * @pixi/accessibility - v6.4.2
9466
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
9465
9467
  *
9466
9468
  * @pixi/accessibility is licensed under the MIT License.
9467
9469
  * http://www.opensource.org/licenses/mit-license
@@ -9978,8 +9980,8 @@ var PIXI = (function (exports) {
9978
9980
  }());
9979
9981
 
9980
9982
  /*!
9981
- * @pixi/ticker - v6.4.0
9982
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
9983
+ * @pixi/ticker - v6.4.2
9984
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
9983
9985
  *
9984
9986
  * @pixi/ticker is licensed under the MIT License.
9985
9987
  * http://www.opensource.org/licenses/mit-license
@@ -10682,8 +10684,8 @@ var PIXI = (function (exports) {
10682
10684
  }());
10683
10685
 
10684
10686
  /*!
10685
- * @pixi/interaction - v6.4.0
10686
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
10687
+ * @pixi/interaction - v6.4.2
10688
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
10687
10689
  *
10688
10690
  * @pixi/interaction is licensed under the MIT License.
10689
10691
  * http://www.opensource.org/licenses/mit-license
@@ -12494,8 +12496,8 @@ var PIXI = (function (exports) {
12494
12496
  }(eventemitter3));
12495
12497
 
12496
12498
  /*!
12497
- * @pixi/runner - v6.4.0
12498
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
12499
+ * @pixi/runner - v6.4.2
12500
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
12499
12501
  *
12500
12502
  * @pixi/runner is licensed under the MIT License.
12501
12503
  * http://www.opensource.org/licenses/mit-license
@@ -12678,8 +12680,8 @@ var PIXI = (function (exports) {
12678
12680
  });
12679
12681
 
12680
12682
  /*!
12681
- * @pixi/core - v6.4.0
12682
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
12683
+ * @pixi/core - v6.4.2
12684
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
12683
12685
  *
12684
12686
  * @pixi/core is licensed under the MIT License.
12685
12687
  * http://www.opensource.org/licenses/mit-license
@@ -22869,8 +22871,8 @@ var PIXI = (function (exports) {
22869
22871
  }
22870
22872
 
22871
22873
  /*!
22872
- * @pixi/app - v6.4.0
22873
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
22874
+ * @pixi/app - v6.4.2
22875
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
22874
22876
  *
22875
22877
  * @pixi/app is licensed under the MIT License.
22876
22878
  * http://www.opensource.org/licenses/mit-license
@@ -23126,8 +23128,8 @@ var PIXI = (function (exports) {
23126
23128
  Application.registerPlugin(ResizePlugin);
23127
23129
 
23128
23130
  /*!
23129
- * @pixi/extract - v6.4.0
23130
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
23131
+ * @pixi/extract - v6.4.2
23132
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
23131
23133
  *
23132
23134
  * @pixi/extract is licensed under the MIT License.
23133
23135
  * http://www.opensource.org/licenses/mit-license
@@ -23259,8 +23261,8 @@ var PIXI = (function (exports) {
23259
23261
  }
23260
23262
 
23261
23263
  /*!
23262
- * @pixi/settings - v6.4.0
23263
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
23264
+ * @pixi/settings - v6.4.2
23265
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
23264
23266
  *
23265
23267
  * @pixi/settings is licensed under the MIT License.
23266
23268
  * http://www.opensource.org/licenses/mit-license
@@ -23320,8 +23322,8 @@ var PIXI = (function (exports) {
23320
23322
  }
23321
23323
 
23322
23324
  /*!
23323
- * @pixi/constants - v6.4.0
23324
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
23325
+ * @pixi/constants - v6.4.2
23326
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
23325
23327
  *
23326
23328
  * @pixi/constants is licensed under the MIT License.
23327
23329
  * http://www.opensource.org/licenses/mit-license
@@ -24022,8 +24024,8 @@ var PIXI = (function (exports) {
24022
24024
  };
24023
24025
 
24024
24026
  /*!
24025
- * @pixi/display - v6.4.0
24026
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
24027
+ * @pixi/display - v6.4.2
24028
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
24027
24029
  *
24028
24030
  * @pixi/display is licensed under the MIT License.
24029
24031
  * http://www.opensource.org/licenses/mit-license
@@ -25129,7 +25131,9 @@ var PIXI = (function (exports) {
25129
25131
  * Sets a mask for the displayObject. A mask is an object that limits the visibility of an
25130
25132
  * object to the shape of the mask applied to it. In PixiJS a regular mask must be a
25131
25133
  * {@link PIXI.Graphics} or a {@link PIXI.Sprite} object. This allows for much faster masking in canvas as it
25132
- * utilities shape clipping. To remove a mask, set this property to `null`.
25134
+ * utilities shape clipping. Furthermore, a mask of an object must be in the subtree of its parent.
25135
+ * Otherwise, `getLocalBounds` may calculate incorrect bounds, which makes the container's width and height wrong.
25136
+ * To remove a mask, set this property to `null`.
25133
25137
  *
25134
25138
  * For sprite mask both alpha and red channel are used. Black mask is the same as transparent mask.
25135
25139
  * @example
@@ -25193,8 +25197,8 @@ var PIXI = (function (exports) {
25193
25197
  DisplayObject.prototype.displayObjectUpdateTransform = DisplayObject.prototype.updateTransform;
25194
25198
 
25195
25199
  /*!
25196
- * @pixi/constants - v6.4.0
25197
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
25200
+ * @pixi/constants - v6.4.2
25201
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
25198
25202
  *
25199
25203
  * @pixi/constants is licensed under the MIT License.
25200
25204
  * http://www.opensource.org/licenses/mit-license
@@ -26483,8 +26487,8 @@ var PIXI = (function (exports) {
26483
26487
  }());
26484
26488
 
26485
26489
  /*!
26486
- * @pixi/loaders - v6.4.0
26487
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
26490
+ * @pixi/loaders - v6.4.2
26491
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
26488
26492
  *
26489
26493
  * @pixi/loaders is licensed under the MIT License.
26490
26494
  * http://www.opensource.org/licenses/mit-license
@@ -28398,8 +28402,8 @@ var PIXI = (function (exports) {
28398
28402
  Loader.registerPlugin(TextureLoader);
28399
28403
 
28400
28404
  /*!
28401
- * @pixi/compressed-textures - v6.4.0
28402
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
28405
+ * @pixi/compressed-textures - v6.4.2
28406
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
28403
28407
  *
28404
28408
  * @pixi/compressed-textures is licensed under the MIT License.
28405
28409
  * http://www.opensource.org/licenses/mit-license
@@ -29733,8 +29737,8 @@ var PIXI = (function (exports) {
29733
29737
  }());
29734
29738
 
29735
29739
  /*!
29736
- * @pixi/particle-container - v6.4.0
29737
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
29740
+ * @pixi/particle-container - v6.4.2
29741
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
29738
29742
  *
29739
29743
  * @pixi/particle-container is licensed under the MIT License.
29740
29744
  * http://www.opensource.org/licenses/mit-license
@@ -30389,8 +30393,8 @@ var PIXI = (function (exports) {
30389
30393
  }(ObjectRenderer));
30390
30394
 
30391
30395
  /*!
30392
- * @pixi/graphics - v6.4.0
30393
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
30396
+ * @pixi/graphics - v6.4.2
30397
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
30394
30398
  *
30395
30399
  * @pixi/graphics is licensed under the MIT License.
30396
30400
  * http://www.opensource.org/licenses/mit-license
@@ -33325,8 +33329,8 @@ var PIXI = (function (exports) {
33325
33329
  };
33326
33330
 
33327
33331
  /*!
33328
- * @pixi/sprite - v6.4.0
33329
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
33332
+ * @pixi/sprite - v6.4.2
33333
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
33330
33334
  *
33331
33335
  * @pixi/sprite is licensed under the MIT License.
33332
33336
  * http://www.opensource.org/licenses/mit-license
@@ -33771,8 +33775,8 @@ var PIXI = (function (exports) {
33771
33775
  }(Container$1));
33772
33776
 
33773
33777
  /*!
33774
- * @pixi/text - v6.4.0
33775
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
33778
+ * @pixi/text - v6.4.2
33779
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
33776
33780
  *
33777
33781
  * @pixi/text is licensed under the MIT License.
33778
33782
  * http://www.opensource.org/licenses/mit-license
@@ -35669,8 +35673,8 @@ var PIXI = (function (exports) {
35669
35673
  }(Sprite));
35670
35674
 
35671
35675
  /*!
35672
- * @pixi/prepare - v6.4.0
35673
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
35676
+ * @pixi/prepare - v6.4.2
35677
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
35674
35678
  *
35675
35679
  * @pixi/prepare is licensed under the MIT License.
35676
35680
  * http://www.opensource.org/licenses/mit-license
@@ -36194,8 +36198,8 @@ var PIXI = (function (exports) {
36194
36198
  }());
36195
36199
 
36196
36200
  /*!
36197
- * @pixi/spritesheet - v6.4.0
36198
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
36201
+ * @pixi/spritesheet - v6.4.2
36202
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
36199
36203
  *
36200
36204
  * @pixi/spritesheet is licensed under the MIT License.
36201
36205
  * http://www.opensource.org/licenses/mit-license
@@ -36506,8 +36510,8 @@ var PIXI = (function (exports) {
36506
36510
  }());
36507
36511
 
36508
36512
  /*!
36509
- * @pixi/sprite-tiling - v6.4.0
36510
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
36513
+ * @pixi/sprite-tiling - v6.4.2
36514
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
36511
36515
  *
36512
36516
  * @pixi/sprite-tiling is licensed under the MIT License.
36513
36517
  * http://www.opensource.org/licenses/mit-license
@@ -36854,8 +36858,8 @@ var PIXI = (function (exports) {
36854
36858
  }(ObjectRenderer));
36855
36859
 
36856
36860
  /*!
36857
- * @pixi/mesh - v6.4.0
36858
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
36861
+ * @pixi/mesh - v6.4.2
36862
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
36859
36863
  *
36860
36864
  * @pixi/mesh is licensed under the MIT License.
36861
36865
  * http://www.opensource.org/licenses/mit-license
@@ -37425,8 +37429,8 @@ var PIXI = (function (exports) {
37425
37429
  }(Geometry));
37426
37430
 
37427
37431
  /*!
37428
- * @pixi/text-bitmap - v6.4.0
37429
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
37432
+ * @pixi/text-bitmap - v6.4.2
37433
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
37430
37434
  *
37431
37435
  * @pixi/text-bitmap is licensed under the MIT License.
37432
37436
  * http://www.opensource.org/licenses/mit-license
@@ -39014,8 +39018,8 @@ var PIXI = (function (exports) {
39014
39018
  }());
39015
39019
 
39016
39020
  /*!
39017
- * @pixi/filter-alpha - v6.4.0
39018
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
39021
+ * @pixi/filter-alpha - v6.4.2
39022
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
39019
39023
  *
39020
39024
  * @pixi/filter-alpha is licensed under the MIT License.
39021
39025
  * http://www.opensource.org/licenses/mit-license
@@ -39095,8 +39099,8 @@ var PIXI = (function (exports) {
39095
39099
  }(Filter));
39096
39100
 
39097
39101
  /*!
39098
- * @pixi/filter-blur - v6.4.0
39099
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
39102
+ * @pixi/filter-blur - v6.4.2
39103
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
39100
39104
  *
39101
39105
  * @pixi/filter-blur is licensed under the MIT License.
39102
39106
  * http://www.opensource.org/licenses/mit-license
@@ -39193,8 +39197,8 @@ var PIXI = (function (exports) {
39193
39197
  }
39194
39198
 
39195
39199
  /*!
39196
- * @pixi/constants - v6.4.0
39197
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
39200
+ * @pixi/constants - v6.4.2
39201
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
39198
39202
  *
39199
39203
  * @pixi/constants is licensed under the MIT License.
39200
39204
  * http://www.opensource.org/licenses/mit-license
@@ -39956,8 +39960,8 @@ var PIXI = (function (exports) {
39956
39960
  }(Filter));
39957
39961
 
39958
39962
  /*!
39959
- * @pixi/filter-color-matrix - v6.4.0
39960
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
39963
+ * @pixi/filter-color-matrix - v6.4.2
39964
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
39961
39965
  *
39962
39966
  * @pixi/filter-color-matrix is licensed under the MIT License.
39963
39967
  * http://www.opensource.org/licenses/mit-license
@@ -40469,8 +40473,8 @@ var PIXI = (function (exports) {
40469
40473
  ColorMatrixFilter.prototype.grayscale = ColorMatrixFilter.prototype.greyscale;
40470
40474
 
40471
40475
  /*!
40472
- * @pixi/filter-displacement - v6.4.0
40473
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
40476
+ * @pixi/filter-displacement - v6.4.2
40477
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
40474
40478
  *
40475
40479
  * @pixi/filter-displacement is licensed under the MIT License.
40476
40480
  * http://www.opensource.org/licenses/mit-license
@@ -40592,8 +40596,8 @@ var PIXI = (function (exports) {
40592
40596
  }(Filter));
40593
40597
 
40594
40598
  /*!
40595
- * @pixi/filter-fxaa - v6.4.0
40596
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
40599
+ * @pixi/filter-fxaa - v6.4.2
40600
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
40597
40601
  *
40598
40602
  * @pixi/filter-fxaa is licensed under the MIT License.
40599
40603
  * http://www.opensource.org/licenses/mit-license
@@ -40648,8 +40652,8 @@ var PIXI = (function (exports) {
40648
40652
  }(Filter));
40649
40653
 
40650
40654
  /*!
40651
- * @pixi/filter-noise - v6.4.0
40652
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
40655
+ * @pixi/filter-noise - v6.4.2
40656
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
40653
40657
  *
40654
40658
  * @pixi/filter-noise is licensed under the MIT License.
40655
40659
  * http://www.opensource.org/licenses/mit-license
@@ -40739,16 +40743,16 @@ var PIXI = (function (exports) {
40739
40743
  }(Filter));
40740
40744
 
40741
40745
  /*!
40742
- * @pixi/mixin-cache-as-bitmap - v6.4.0
40743
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
40746
+ * @pixi/mixin-cache-as-bitmap - v6.4.2
40747
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
40744
40748
  *
40745
40749
  * @pixi/mixin-cache-as-bitmap is licensed under the MIT License.
40746
40750
  * http://www.opensource.org/licenses/mit-license
40747
40751
  */
40748
40752
 
40749
40753
  /*!
40750
- * @pixi/constants - v6.4.0
40751
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
40754
+ * @pixi/constants - v6.4.2
40755
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
40752
40756
  *
40753
40757
  * @pixi/constants is licensed under the MIT License.
40754
40758
  * http://www.opensource.org/licenses/mit-license
@@ -41606,8 +41610,8 @@ var PIXI = (function (exports) {
41606
41610
  };
41607
41611
 
41608
41612
  /*!
41609
- * @pixi/mixin-get-child-by-name - v6.4.0
41610
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
41613
+ * @pixi/mixin-get-child-by-name - v6.4.2
41614
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
41611
41615
  *
41612
41616
  * @pixi/mixin-get-child-by-name is licensed under the MIT License.
41613
41617
  * http://www.opensource.org/licenses/mit-license
@@ -41651,8 +41655,8 @@ var PIXI = (function (exports) {
41651
41655
  };
41652
41656
 
41653
41657
  /*!
41654
- * @pixi/mixin-get-global-position - v6.4.0
41655
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
41658
+ * @pixi/mixin-get-global-position - v6.4.2
41659
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
41656
41660
  *
41657
41661
  * @pixi/mixin-get-global-position is licensed under the MIT License.
41658
41662
  * http://www.opensource.org/licenses/mit-license
@@ -41682,8 +41686,8 @@ var PIXI = (function (exports) {
41682
41686
  };
41683
41687
 
41684
41688
  /*!
41685
- * @pixi/mesh-extras - v6.4.0
41686
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
41689
+ * @pixi/mesh-extras - v6.4.2
41690
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
41687
41691
  *
41688
41692
  * @pixi/mesh-extras is licensed under the MIT License.
41689
41693
  * http://www.opensource.org/licenses/mit-license
@@ -42306,8 +42310,8 @@ var PIXI = (function (exports) {
42306
42310
  }(SimplePlane));
42307
42311
 
42308
42312
  /*!
42309
- * @pixi/sprite-animated - v6.4.0
42310
- * Compiled Wed, 01 Jun 2022 21:14:23 UTC
42313
+ * @pixi/sprite-animated - v6.4.2
42314
+ * Compiled Thu, 02 Jun 2022 15:39:26 UTC
42311
42315
  *
42312
42316
  * @pixi/sprite-animated is licensed under the MIT License.
42313
42317
  * http://www.opensource.org/licenses/mit-license
@@ -42668,7 +42672,7 @@ var PIXI = (function (exports) {
42668
42672
  * @name VERSION
42669
42673
  * @type {string}
42670
42674
  */
42671
- var VERSION = '6.4.0';
42675
+ var VERSION = '6.4.2';
42672
42676
  /**
42673
42677
  * @namespace PIXI
42674
42678
  */