@babylonjs/core 5.20.0 → 5.21.0

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.
@@ -974,6 +974,12 @@ interface Window {
974
974
  setImmediate(handler: (...args: any[]) => void): number;
975
975
  }
976
976
 
977
+ interface WorkerGlobalScope {
978
+ importScripts: (...args: string[]) => void;
979
+ }
980
+
981
+ type WorkerSelf = WindowOrWorkerGlobalScope & WorkerGlobalScope;
982
+
977
983
  interface HTMLCanvasElement {
978
984
  requestPointerLock(): void;
979
985
  msRequestPointerLock?(): void;
@@ -409,7 +409,7 @@ var ThinEngine = /** @class */ (function () {
409
409
  */
410
410
  // Not mixed with Version for tooling purpose.
411
411
  get: function () {
412
- return "babylonjs@5.20.0";
412
+ return "babylonjs@5.21.0";
413
413
  },
414
414
  enumerable: false,
415
415
  configurable: true
@@ -419,7 +419,7 @@ var ThinEngine = /** @class */ (function () {
419
419
  * Returns the current version of the framework
420
420
  */
421
421
  get: function () {
422
- return "5.20.0";
422
+ return "5.21.0";
423
423
  },
424
424
  enumerable: false,
425
425
  configurable: true