pixi.js 7.2.0-beta.2 → 7.2.0-beta.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.
package/dist/pixi.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
- * pixi.js - v7.2.0-beta.2
3
- * Compiled Wed, 22 Feb 2023 16:50:25 UTC
2
+ * pixi.js - v7.2.0-beta.3
3
+ * Compiled Fri, 24 Feb 2023 17:54:49 UTC
4
4
  *
5
5
  * pixi.js is licensed under the MIT License.
6
6
  * http://www.opensource.org/licenses/mit-license
@@ -351,7 +351,8 @@ var PIXI = (function (exports) {
351
351
  return result;
352
352
  }
353
353
 
354
- const isMobile = isMobile$1(globalThis.navigator);
354
+ const isMobileCall = isMobile$1.default ?? isMobile$1;
355
+ const isMobile = isMobileCall(globalThis.navigator);
355
356
 
356
357
  settings.RETINA_PREFIX = /@([0-9\.]+)x/;
357
358
  settings.FAIL_IF_MAJOR_PERFORMANCE_CAVEAT = false;
@@ -10357,7 +10358,7 @@ ${this.fragmentSrc}`;
10357
10358
  const { renderer } = this;
10358
10359
  renderer.runners.init.emit(renderer.options);
10359
10360
  if (options.hello) {
10360
- console.log(`PixiJS ${"7.2.0-beta.2"} - ${renderer.rendererLogId} - https://pixijs.com`);
10361
+ console.log(`PixiJS ${"7.2.0-beta.3"} - ${renderer.rendererLogId} - https://pixijs.com`);
10361
10362
  }
10362
10363
  renderer.resize(renderer.screen.width, renderer.screen.height);
10363
10364
  }
@@ -12542,7 +12543,7 @@ ${this.fragmentSrc}`;
12542
12543
  }
12543
12544
  }
12544
12545
 
12545
- const VERSION = "7.2.0-beta.2";
12546
+ const VERSION = "7.2.0-beta.3";
12546
12547
 
12547
12548
  class Bounds {
12548
12549
  constructor() {