@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.
- package/Engines/engine.d.ts +6 -0
- package/Engines/thinEngine.js +2 -2
- package/Engines/thinEngine.js.map +1 -1
- package/Materials/Background/backgroundMaterial.js +1 -0
- package/Materials/Background/backgroundMaterial.js.map +1 -1
- package/Materials/PBR/pbrBaseMaterial.js +10 -0
- package/Materials/PBR/pbrBaseMaterial.js.map +1 -1
- package/Materials/materialHelper.js +1 -1
- package/Materials/materialHelper.js.map +1 -1
- package/Materials/standardMaterial.js +7 -0
- package/Materials/standardMaterial.js.map +1 -1
- package/Meshes/mesh.d.ts +12 -12
- package/Meshes/mesh.js +12 -12
- package/Meshes/mesh.js.map +1 -1
- package/Misc/fileTools.js +7 -1
- package/Misc/fileTools.js.map +1 -1
- package/Misc/iInspectable.d.ts +5 -2
- package/Misc/iInspectable.js.map +1 -1
- package/Misc/tools.js +12 -1
- package/Misc/tools.js.map +1 -1
- package/package.json +1 -1
- package/scene.js +2 -0
- package/scene.js.map +1 -1
package/Engines/engine.d.ts
CHANGED
|
@@ -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;
|
package/Engines/thinEngine.js
CHANGED
|
@@ -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.
|
|
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.
|
|
422
|
+
return "5.21.0";
|
|
423
423
|
},
|
|
424
424
|
enumerable: false,
|
|
425
425
|
configurable: true
|