pixi.js 6.5.2 → 6.5.3

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.5.2
3
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
2
+ * pixi.js - v6.5.3
3
+ * Compiled Fri, 09 Sep 2022 13:55:20 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.5.2
427
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
426
+ * @pixi/polyfill - v6.5.3
427
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
428
428
  *
429
429
  * @pixi/polyfill is licensed under the MIT License.
430
430
  * http://www.opensource.org/licenses/mit-license
@@ -547,15 +547,15 @@ var PIXI = (function (exports) {
547
547
  }
548
548
 
549
549
  /*!
550
- * @pixi/settings - v6.5.2
551
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
550
+ * @pixi/settings - v6.5.3
551
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
552
552
  *
553
553
  * @pixi/settings is licensed under the MIT License.
554
554
  * http://www.opensource.org/licenses/mit-license
555
555
  */
556
556
  /*!
557
- * @pixi/constants - v6.5.2
558
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
557
+ * @pixi/constants - v6.5.3
558
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
559
559
  *
560
560
  * @pixi/constants is licensed under the MIT License.
561
561
  * http://www.opensource.org/licenses/mit-license
@@ -3995,8 +3995,8 @@ var PIXI = (function (exports) {
3995
3995
  };
3996
3996
 
3997
3997
  /*!
3998
- * @pixi/constants - v6.5.2
3999
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
3998
+ * @pixi/constants - v6.5.3
3999
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
4000
4000
  *
4001
4001
  * @pixi/constants is licensed under the MIT License.
4002
4002
  * http://www.opensource.org/licenses/mit-license
@@ -4509,8 +4509,8 @@ var PIXI = (function (exports) {
4509
4509
  })(exports.BUFFER_TYPE || (exports.BUFFER_TYPE = {}));
4510
4510
 
4511
4511
  /*!
4512
- * @pixi/utils - v6.5.2
4513
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
4512
+ * @pixi/utils - v6.5.3
4513
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
4514
4514
  *
4515
4515
  * @pixi/utils is licensed under the MIT License.
4516
4516
  * http://www.opensource.org/licenses/mit-license
@@ -4533,6 +4533,10 @@ var PIXI = (function (exports) {
4533
4533
  throw new TypeError("Path must be a string. Received " + JSON.stringify(path));
4534
4534
  }
4535
4535
  }
4536
+ function removeUrlParams(url) {
4537
+ var re = url.split('?')[0];
4538
+ return re.split('#')[0];
4539
+ }
4536
4540
  function escapeRegExp(string) {
4537
4541
  return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); // $& means the whole matched string
4538
4542
  }
@@ -4674,8 +4678,8 @@ var PIXI = (function (exports) {
4674
4678
  toAbsolute: function (url, customBaseUrl, customRootUrl) {
4675
4679
  if (this.isDataUrl(url))
4676
4680
  { return url; }
4677
- var baseUrl = this.toPosix(customBaseUrl !== null && customBaseUrl !== void 0 ? customBaseUrl : settings$1.ADAPTER.getBaseUrl());
4678
- var rootUrl = this.toPosix(customRootUrl !== null && customRootUrl !== void 0 ? customRootUrl : this.rootname(baseUrl));
4681
+ var baseUrl = removeUrlParams(this.toPosix(customBaseUrl !== null && customBaseUrl !== void 0 ? customBaseUrl : settings$1.ADAPTER.getBaseUrl()));
4682
+ var rootUrl = removeUrlParams(this.toPosix(customRootUrl !== null && customRootUrl !== void 0 ? customRootUrl : this.rootname(baseUrl)));
4679
4683
  assertPath(url);
4680
4684
  url = this.toPosix(url);
4681
4685
  // root relative url
@@ -4729,6 +4733,7 @@ var PIXI = (function (exports) {
4729
4733
  join: function () {
4730
4734
  var arguments$1 = arguments;
4731
4735
 
4736
+ var _a;
4732
4737
  var segments = [];
4733
4738
  for (var _i = 0; _i < arguments.length; _i++) {
4734
4739
  segments[_i] = arguments$1[_i];
@@ -4743,8 +4748,15 @@ var PIXI = (function (exports) {
4743
4748
  if (arg.length > 0) {
4744
4749
  if (joined === undefined)
4745
4750
  { joined = arg; }
4746
- else
4747
- { joined += "/" + arg; }
4751
+ else {
4752
+ var prevArg = (_a = segments[i - 1]) !== null && _a !== void 0 ? _a : '';
4753
+ if (this.extname(prevArg)) {
4754
+ joined += "/../" + arg;
4755
+ }
4756
+ else {
4757
+ joined += "/" + arg;
4758
+ }
4759
+ }
4748
4760
  }
4749
4761
  }
4750
4762
  if (joined === undefined) {
@@ -5079,7 +5091,7 @@ var PIXI = (function (exports) {
5079
5091
  settings$1.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT = false;
5080
5092
 
5081
5093
  var saidHello = false;
5082
- var VERSION$1 = '6.5.2';
5094
+ var VERSION$1 = '6.5.3';
5083
5095
  /**
5084
5096
  * Skips the hello message of renderers that are created after this is run.
5085
5097
  * @function skipHello
@@ -6209,8 +6221,8 @@ var PIXI = (function (exports) {
6209
6221
  };
6210
6222
 
6211
6223
  /*!
6212
- * @pixi/math - v6.5.2
6213
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
6224
+ * @pixi/math - v6.5.3
6225
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
6214
6226
  *
6215
6227
  * @pixi/math is licensed under the MIT License.
6216
6228
  * http://www.opensource.org/licenses/mit-license
@@ -7792,8 +7804,8 @@ var PIXI = (function (exports) {
7792
7804
  }());
7793
7805
 
7794
7806
  /*!
7795
- * @pixi/display - v6.5.2
7796
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
7807
+ * @pixi/display - v6.5.3
7808
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
7797
7809
  *
7798
7810
  * @pixi/display is licensed under the MIT License.
7799
7811
  * http://www.opensource.org/licenses/mit-license
@@ -8971,8 +8983,8 @@ var PIXI = (function (exports) {
8971
8983
  DisplayObject.prototype.displayObjectUpdateTransform = DisplayObject.prototype.updateTransform;
8972
8984
 
8973
8985
  /*!
8974
- * @pixi/constants - v6.5.2
8975
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
8986
+ * @pixi/constants - v6.5.3
8987
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
8976
8988
  *
8977
8989
  * @pixi/constants is licensed under the MIT License.
8978
8990
  * http://www.opensource.org/licenses/mit-license
@@ -10080,8 +10092,8 @@ var PIXI = (function (exports) {
10080
10092
  Container.prototype.containerUpdateTransform = Container.prototype.updateTransform;
10081
10093
 
10082
10094
  /*!
10083
- * @pixi/extensions - v6.5.2
10084
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
10095
+ * @pixi/extensions - v6.5.3
10096
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
10085
10097
  *
10086
10098
  * @pixi/extensions is licensed under the MIT License.
10087
10099
  * http://www.opensource.org/licenses/mit-license
@@ -10282,8 +10294,8 @@ var PIXI = (function (exports) {
10282
10294
  };
10283
10295
 
10284
10296
  /*!
10285
- * @pixi/runner - v6.5.2
10286
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
10297
+ * @pixi/runner - v6.5.3
10298
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
10287
10299
  *
10288
10300
  * @pixi/runner is licensed under the MIT License.
10289
10301
  * http://www.opensource.org/licenses/mit-license
@@ -10466,8 +10478,8 @@ var PIXI = (function (exports) {
10466
10478
  });
10467
10479
 
10468
10480
  /*!
10469
- * @pixi/ticker - v6.5.2
10470
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
10481
+ * @pixi/ticker - v6.5.3
10482
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
10471
10483
  *
10472
10484
  * @pixi/ticker is licensed under the MIT License.
10473
10485
  * http://www.opensource.org/licenses/mit-license
@@ -11173,8 +11185,8 @@ var PIXI = (function (exports) {
11173
11185
  }());
11174
11186
 
11175
11187
  /*!
11176
- * @pixi/core - v6.5.2
11177
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
11188
+ * @pixi/core - v6.5.3
11189
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
11178
11190
  *
11179
11191
  * @pixi/core is licensed under the MIT License.
11180
11192
  * http://www.opensource.org/licenses/mit-license
@@ -16841,9 +16853,9 @@ var PIXI = (function (exports) {
16841
16853
  },
16842
16854
  // handling samplers
16843
16855
  {
16844
- test: function (data) {
16845
- // eslint-disable-next-line max-len
16846
- return (data.type === 'sampler2D' || data.type === 'samplerCube' || data.type === 'sampler2DArray') && data.size === 1 && !data.isArray;
16856
+ test: function (data, uniform) {
16857
+ // eslint-disable-next-line max-len,no-eq-null,eqeqeq
16858
+ return (data.type === 'sampler2D' || data.type === 'samplerCube' || data.type === 'sampler2DArray') && data.size === 1 && !data.isArray && (uniform == null || uniform.castToBaseTexture !== undefined);
16847
16859
  },
16848
16860
  code: function (name) { return "t = syncData.textureCount++;\n\n renderer.texture.bind(uv[\"" + name + "\"], t);\n\n if(ud[\"" + name + "\"].value !== t)\n {\n ud[\"" + name + "\"].value = t;\n gl.uniform1i(ud[\"" + name + "\"].location, t);\n; // eslint-disable-line max-len\n }"; },
16849
16861
  },
@@ -16929,9 +16941,9 @@ var PIXI = (function (exports) {
16929
16941
  mat2: 'gl.uniformMatrix2fv(location, false, v)',
16930
16942
  mat3: 'gl.uniformMatrix3fv(location, false, v)',
16931
16943
  mat4: 'gl.uniformMatrix4fv(location, false, v)',
16932
- sampler2D: 'gl.uniform1i(location, v)',
16933
- samplerCube: 'gl.uniform1i(location, v)',
16934
- sampler2DArray: 'gl.uniform1i(location, v)',
16944
+ sampler2D: "\n if (cv !== v)\n {\n cu.value = v;\n\n gl.uniform1i(location, v);\n }",
16945
+ samplerCube: "\n if (cv !== v)\n {\n cu.value = v;\n\n gl.uniform1i(location, v);\n }",
16946
+ sampler2DArray: "\n if (cv !== v)\n {\n cu.value = v;\n\n gl.uniform1i(location, v);\n }",
16935
16947
  };
16936
16948
  var GLSL_TO_ARRAY_SETTERS = {
16937
16949
  float: "gl.uniform1fv(location, v)",
@@ -21461,11 +21473,11 @@ var PIXI = (function (exports) {
21461
21473
  * String of the current PIXI version.
21462
21474
  * @memberof PIXI
21463
21475
  */
21464
- var VERSION = '6.5.2';
21476
+ var VERSION = '6.5.3';
21465
21477
 
21466
21478
  /*!
21467
- * @pixi/accessibility - v6.5.2
21468
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
21479
+ * @pixi/accessibility - v6.5.3
21480
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
21469
21481
  *
21470
21482
  * @pixi/accessibility is licensed under the MIT License.
21471
21483
  * http://www.opensource.org/licenses/mit-license
@@ -21989,8 +22001,8 @@ var PIXI = (function (exports) {
21989
22001
  }());
21990
22002
 
21991
22003
  /*!
21992
- * @pixi/interaction - v6.5.2
21993
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
22004
+ * @pixi/interaction - v6.5.3
22005
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
21994
22006
  *
21995
22007
  * @pixi/interaction is licensed under the MIT License.
21996
22008
  * http://www.opensource.org/licenses/mit-license
@@ -23816,8 +23828,8 @@ var PIXI = (function (exports) {
23816
23828
  }(eventemitter3));
23817
23829
 
23818
23830
  /*!
23819
- * @pixi/extract - v6.5.2
23820
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
23831
+ * @pixi/extract - v6.5.3
23832
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
23821
23833
  *
23822
23834
  * @pixi/extract is licensed under the MIT License.
23823
23835
  * http://www.opensource.org/licenses/mit-license
@@ -24023,8 +24035,8 @@ var PIXI = (function (exports) {
24023
24035
  }());
24024
24036
 
24025
24037
  /*!
24026
- * @pixi/loaders - v6.5.2
24027
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
24038
+ * @pixi/loaders - v6.5.3
24039
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
24028
24040
  *
24029
24041
  * @pixi/loaders is licensed under the MIT License.
24030
24042
  * http://www.opensource.org/licenses/mit-license
@@ -25955,8 +25967,8 @@ var PIXI = (function (exports) {
25955
25967
  extensions.add(TextureLoader, ParsingLoader);
25956
25968
 
25957
25969
  /*!
25958
- * @pixi/compressed-textures - v6.5.2
25959
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
25970
+ * @pixi/compressed-textures - v6.5.3
25971
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
25960
25972
  *
25961
25973
  * @pixi/compressed-textures is licensed under the MIT License.
25962
25974
  * http://www.opensource.org/licenses/mit-license
@@ -27312,8 +27324,8 @@ var PIXI = (function (exports) {
27312
27324
  }());
27313
27325
 
27314
27326
  /*!
27315
- * @pixi/particle-container - v6.5.2
27316
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
27327
+ * @pixi/particle-container - v6.5.3
27328
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
27317
27329
  *
27318
27330
  * @pixi/particle-container is licensed under the MIT License.
27319
27331
  * http://www.opensource.org/licenses/mit-license
@@ -27974,8 +27986,8 @@ var PIXI = (function (exports) {
27974
27986
  }(ObjectRenderer));
27975
27987
 
27976
27988
  /*!
27977
- * @pixi/graphics - v6.5.2
27978
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
27989
+ * @pixi/graphics - v6.5.3
27990
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
27979
27991
  *
27980
27992
  * @pixi/graphics is licensed under the MIT License.
27981
27993
  * http://www.opensource.org/licenses/mit-license
@@ -30866,8 +30878,8 @@ var PIXI = (function (exports) {
30866
30878
  };
30867
30879
 
30868
30880
  /*!
30869
- * @pixi/sprite - v6.5.2
30870
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
30881
+ * @pixi/sprite - v6.5.3
30882
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
30871
30883
  *
30872
30884
  * @pixi/sprite is licensed under the MIT License.
30873
30885
  * http://www.opensource.org/licenses/mit-license
@@ -31312,8 +31324,8 @@ var PIXI = (function (exports) {
31312
31324
  }(Container));
31313
31325
 
31314
31326
  /*!
31315
- * @pixi/text - v6.5.2
31316
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
31327
+ * @pixi/text - v6.5.3
31328
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
31317
31329
  *
31318
31330
  * @pixi/text is licensed under the MIT License.
31319
31331
  * http://www.opensource.org/licenses/mit-license
@@ -33210,8 +33222,8 @@ var PIXI = (function (exports) {
33210
33222
  }(Sprite));
33211
33223
 
33212
33224
  /*!
33213
- * @pixi/prepare - v6.5.2
33214
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
33225
+ * @pixi/prepare - v6.5.3
33226
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
33215
33227
  *
33216
33228
  * @pixi/prepare is licensed under the MIT License.
33217
33229
  * http://www.opensource.org/licenses/mit-license
@@ -33743,8 +33755,8 @@ var PIXI = (function (exports) {
33743
33755
  }());
33744
33756
 
33745
33757
  /*!
33746
- * @pixi/spritesheet - v6.5.2
33747
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
33758
+ * @pixi/spritesheet - v6.5.3
33759
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
33748
33760
  *
33749
33761
  * @pixi/spritesheet is licensed under the MIT License.
33750
33762
  * http://www.opensource.org/licenses/mit-license
@@ -34065,8 +34077,8 @@ var PIXI = (function (exports) {
34065
34077
  }());
34066
34078
 
34067
34079
  /*!
34068
- * @pixi/sprite-tiling - v6.5.2
34069
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
34080
+ * @pixi/sprite-tiling - v6.5.3
34081
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
34070
34082
  *
34071
34083
  * @pixi/sprite-tiling is licensed under the MIT License.
34072
34084
  * http://www.opensource.org/licenses/mit-license
@@ -34419,8 +34431,8 @@ var PIXI = (function (exports) {
34419
34431
  }(ObjectRenderer));
34420
34432
 
34421
34433
  /*!
34422
- * @pixi/mesh - v6.5.2
34423
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
34434
+ * @pixi/mesh - v6.5.3
34435
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
34424
34436
  *
34425
34437
  * @pixi/mesh is licensed under the MIT License.
34426
34438
  * http://www.opensource.org/licenses/mit-license
@@ -34990,8 +35002,8 @@ var PIXI = (function (exports) {
34990
35002
  }(Geometry));
34991
35003
 
34992
35004
  /*!
34993
- * @pixi/text-bitmap - v6.5.2
34994
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
35005
+ * @pixi/text-bitmap - v6.5.3
35006
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
34995
35007
  *
34996
35008
  * @pixi/text-bitmap is licensed under the MIT License.
34997
35009
  * http://www.opensource.org/licenses/mit-license
@@ -36582,8 +36594,8 @@ var PIXI = (function (exports) {
36582
36594
  }());
36583
36595
 
36584
36596
  /*!
36585
- * @pixi/filter-alpha - v6.5.2
36586
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
36597
+ * @pixi/filter-alpha - v6.5.3
36598
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
36587
36599
  *
36588
36600
  * @pixi/filter-alpha is licensed under the MIT License.
36589
36601
  * http://www.opensource.org/licenses/mit-license
@@ -36663,8 +36675,8 @@ var PIXI = (function (exports) {
36663
36675
  }(Filter));
36664
36676
 
36665
36677
  /*!
36666
- * @pixi/filter-blur - v6.5.2
36667
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
36678
+ * @pixi/filter-blur - v6.5.3
36679
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
36668
36680
  *
36669
36681
  * @pixi/filter-blur is licensed under the MIT License.
36670
36682
  * http://www.opensource.org/licenses/mit-license
@@ -36761,8 +36773,8 @@ var PIXI = (function (exports) {
36761
36773
  }
36762
36774
 
36763
36775
  /*!
36764
- * @pixi/constants - v6.5.2
36765
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
36776
+ * @pixi/constants - v6.5.3
36777
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
36766
36778
  *
36767
36779
  * @pixi/constants is licensed under the MIT License.
36768
36780
  * http://www.opensource.org/licenses/mit-license
@@ -37544,8 +37556,8 @@ var PIXI = (function (exports) {
37544
37556
  }(Filter));
37545
37557
 
37546
37558
  /*!
37547
- * @pixi/filter-color-matrix - v6.5.2
37548
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
37559
+ * @pixi/filter-color-matrix - v6.5.3
37560
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
37549
37561
  *
37550
37562
  * @pixi/filter-color-matrix is licensed under the MIT License.
37551
37563
  * http://www.opensource.org/licenses/mit-license
@@ -38057,8 +38069,8 @@ var PIXI = (function (exports) {
38057
38069
  ColorMatrixFilter.prototype.grayscale = ColorMatrixFilter.prototype.greyscale;
38058
38070
 
38059
38071
  /*!
38060
- * @pixi/filter-displacement - v6.5.2
38061
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
38072
+ * @pixi/filter-displacement - v6.5.3
38073
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
38062
38074
  *
38063
38075
  * @pixi/filter-displacement is licensed under the MIT License.
38064
38076
  * http://www.opensource.org/licenses/mit-license
@@ -38180,8 +38192,8 @@ var PIXI = (function (exports) {
38180
38192
  }(Filter));
38181
38193
 
38182
38194
  /*!
38183
- * @pixi/filter-fxaa - v6.5.2
38184
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
38195
+ * @pixi/filter-fxaa - v6.5.3
38196
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
38185
38197
  *
38186
38198
  * @pixi/filter-fxaa is licensed under the MIT License.
38187
38199
  * http://www.opensource.org/licenses/mit-license
@@ -38236,8 +38248,8 @@ var PIXI = (function (exports) {
38236
38248
  }(Filter));
38237
38249
 
38238
38250
  /*!
38239
- * @pixi/filter-noise - v6.5.2
38240
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
38251
+ * @pixi/filter-noise - v6.5.3
38252
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
38241
38253
  *
38242
38254
  * @pixi/filter-noise is licensed under the MIT License.
38243
38255
  * http://www.opensource.org/licenses/mit-license
@@ -38327,16 +38339,16 @@ var PIXI = (function (exports) {
38327
38339
  }(Filter));
38328
38340
 
38329
38341
  /*!
38330
- * @pixi/mixin-cache-as-bitmap - v6.5.2
38331
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
38342
+ * @pixi/mixin-cache-as-bitmap - v6.5.3
38343
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
38332
38344
  *
38333
38345
  * @pixi/mixin-cache-as-bitmap is licensed under the MIT License.
38334
38346
  * http://www.opensource.org/licenses/mit-license
38335
38347
  */
38336
38348
 
38337
38349
  /*!
38338
- * @pixi/constants - v6.5.2
38339
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
38350
+ * @pixi/constants - v6.5.3
38351
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
38340
38352
  *
38341
38353
  * @pixi/constants is licensed under the MIT License.
38342
38354
  * http://www.opensource.org/licenses/mit-license
@@ -39214,8 +39226,8 @@ var PIXI = (function (exports) {
39214
39226
  };
39215
39227
 
39216
39228
  /*!
39217
- * @pixi/mixin-get-child-by-name - v6.5.2
39218
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
39229
+ * @pixi/mixin-get-child-by-name - v6.5.3
39230
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
39219
39231
  *
39220
39232
  * @pixi/mixin-get-child-by-name is licensed under the MIT License.
39221
39233
  * http://www.opensource.org/licenses/mit-license
@@ -39259,8 +39271,8 @@ var PIXI = (function (exports) {
39259
39271
  };
39260
39272
 
39261
39273
  /*!
39262
- * @pixi/mixin-get-global-position - v6.5.2
39263
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
39274
+ * @pixi/mixin-get-global-position - v6.5.3
39275
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
39264
39276
  *
39265
39277
  * @pixi/mixin-get-global-position is licensed under the MIT License.
39266
39278
  * http://www.opensource.org/licenses/mit-license
@@ -39290,8 +39302,8 @@ var PIXI = (function (exports) {
39290
39302
  };
39291
39303
 
39292
39304
  /*!
39293
- * @pixi/app - v6.5.2
39294
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
39305
+ * @pixi/app - v6.5.3
39306
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
39295
39307
  *
39296
39308
  * @pixi/app is licensed under the MIT License.
39297
39309
  * http://www.opensource.org/licenses/mit-license
@@ -39413,15 +39425,15 @@ var PIXI = (function (exports) {
39413
39425
  }());
39414
39426
 
39415
39427
  /*!
39416
- * @pixi/settings - v6.5.2
39417
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
39428
+ * @pixi/settings - v6.5.3
39429
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
39418
39430
  *
39419
39431
  * @pixi/settings is licensed under the MIT License.
39420
39432
  * http://www.opensource.org/licenses/mit-license
39421
39433
  */
39422
39434
  /*!
39423
- * @pixi/constants - v6.5.2
39424
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
39435
+ * @pixi/constants - v6.5.3
39436
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
39425
39437
  *
39426
39438
  * @pixi/constants is licensed under the MIT License.
39427
39439
  * http://www.opensource.org/licenses/mit-license
@@ -41341,8 +41353,8 @@ var PIXI = (function (exports) {
41341
41353
  });
41342
41354
 
41343
41355
  /*!
41344
- * @pixi/constants - v6.5.2
41345
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
41356
+ * @pixi/constants - v6.5.3
41357
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
41346
41358
  *
41347
41359
  * @pixi/constants is licensed under the MIT License.
41348
41360
  * http://www.opensource.org/licenses/mit-license
@@ -41855,8 +41867,8 @@ var PIXI = (function (exports) {
41855
41867
  })(BUFFER_TYPE || (BUFFER_TYPE = {}));
41856
41868
 
41857
41869
  /*!
41858
- * @pixi/utils - v6.5.2
41859
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
41870
+ * @pixi/utils - v6.5.3
41871
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
41860
41872
  *
41861
41873
  * @pixi/utils is licensed under the MIT License.
41862
41874
  * http://www.opensource.org/licenses/mit-license
@@ -42187,8 +42199,8 @@ var PIXI = (function (exports) {
42187
42199
  extensions.add(ResizePlugin);
42188
42200
 
42189
42201
  /*!
42190
- * @pixi/mesh-extras - v6.5.2
42191
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
42202
+ * @pixi/mesh-extras - v6.5.3
42203
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
42192
42204
  *
42193
42205
  * @pixi/mesh-extras is licensed under the MIT License.
42194
42206
  * http://www.opensource.org/licenses/mit-license
@@ -42811,8 +42823,8 @@ var PIXI = (function (exports) {
42811
42823
  }(SimplePlane));
42812
42824
 
42813
42825
  /*!
42814
- * @pixi/sprite-animated - v6.5.2
42815
- * Compiled Wed, 24 Aug 2022 13:51:19 UTC
42826
+ * @pixi/sprite-animated - v6.5.3
42827
+ * Compiled Fri, 09 Sep 2022 13:55:20 UTC
42816
42828
  *
42817
42829
  * @pixi/sprite-animated is licensed under the MIT License.
42818
42830
  * http://www.opensource.org/licenses/mit-license