diff --git a/.build/changelog.json b/.build/changelog.json
index 71957fdf5774..d82af8afe10d 100644
--- a/.build/changelog.json
+++ b/.build/changelog.json
@@ -1,6 +1,182 @@
{
- "fromTag": "5.7.0",
+ "fromTag": "5.8.0",
"changelog": {
+ "5.8.1": [
+ {
+ "pr": "12523",
+ "title": "Add new prepass to compute the specularity-glossiness map whatever the material type",
+ "description": "This is the PR following this issue:\r\nhttps://forum.babylonjs.com/t/prepass-get-accurate-reflectance-information/30351\r\n\r\nThe aim is to compute reflectance and glossiness information whatever the material type (standard, PBR, PBR Specular-Glossiness, PBR Metallic-Roughness). The architecture is based on the other PrePasses. The translation model from Metallic-Roughness to Specular-Glossiness is based on: https://marmoset.co/posts/pbr-texture-conversion.",
+ "author": {
+ "name": "Mannns",
+ "url": "https://github.com/Mannns"
+ },
+ "files": [
+ "packages/dev/core/src/Rendering/geometryBufferRenderer.ts",
+ "packages/dev/core/src/Shaders/default.fragment.fx",
+ "packages/dev/core/src/Shaders/geometry.fragment.fx",
+ "packages/dev/core/src/Shaders/geometry.vertex.fx",
+ "packages/dev/core/src/Shaders/pbr.fragment.fx",
+ "packages/tools/tests/test/visualization/config.json"
+ ],
+ "tags": []
+ },
+ {
+ "pr": "12601",
+ "title": "Add missing observer trigger - onLoadedObservable notify method for hdrCubeTexture",
+ "description": "I found a minor issue during loading textures through `add task` of `asset manager`\r\nwhen I try to load the same texture files several times for different purposes, `cubeTextureTask` can be finished normally but `hdrCubeTextureTask` can't be finished even though it has been already finished\r\n\r\n* this playground can show task count on `console`\r\nhttps://playground.babylonjs.com/#M5L9FH\r\n\r\nSo, I have debugged and I found the creating function of hdrTexture has lost the `load observable notify` method that is included in the `creating function of cubeTexture`\r\n\r\n- `engine.cubeTexture.ts` \r\n\r\n\r\n\r\n- `engine.rawTexture.ts`\r\n\r\n\r\n\r\nI add above code in `raw texture` and then it worked well\r\n![스크린샷 2022-05-30 오후 4 06 10](https://user-images.githubusercontent.com/70849655/170936119-0438806d-e447-4027-ab92-7540e4c3c65e.png)\r\n",
+ "author": {
+ "name": "slash9494",
+ "url": "https://github.com/slash9494"
+ },
+ "files": [
+ "packages/dev/core/src/Engines/Extensions/engine.rawTexture.ts"
+ ],
+ "tags": []
+ },
+ {
+ "pr": "12596",
+ "title": "remove private variables from WebGPU declaration",
+ "description": "The reason behind this is the documentation page that fails compilation because of this error:\r\n\r\n```\r\n Class 'GPUOutOfMemoryError' incorrectly implements class 'GPUError'. Did you mean to extend 'GPUError' and inherit its members as a subclass?\r\n Types have separate declarations of a private property '__brand'.\r\nError: C:/Users/raweber/Documents/GitHub/Documentation/.temp/docdirectory/doc.d.ts(97057)\r\n Class 'GPUValidationError' incorrectly implements class 'GPUError'. Did you mean to extend 'GPUError' and inherit its members as a subclass?\r\n Types have separate declarations of a private property '__brand'.\r\n```\r\n\r\nThe reason for the error is probably an older version of typedoc (work is being done to update that), which uses an older version of typescript to analyze the file.\r\n\r\nAs this private variable is not being used anywhere in the code I took delibery of suggesting to remove it, but I will wait for @Popov72 to approve this PR before merging",
+ "author": {
+ "name": "RaananW",
+ "url": "https://github.com/RaananW"
+ },
+ "files": [
+ "packages/dev/core/src/LibDeclarations/webgpu.d.ts"
+ ],
+ "tags": []
+ },
+ {
+ "pr": "12495",
+ "title": "GLTFSerializer : Ext mesh gpu instancing",
+ "description": "Add support to EXT_mesh_gpu_instancing to Babylon GLTF Serializer.\r\nThin instances are used to save transformation into GLTF buffer.\r\nThis extension is NOT official and not supported yet by many viewer. This may be used with caution while terminology between Local Transformation and World transformation are not consistent beetwen this Extension and the babylon Thin instances.\r\nTest has been conducted sucessfully with playground and sandbox, using respectively coding samples and imported gltf sample.\r\nThe main sample used was the \"official\" [gltf sample](https://github.com/KhronosGroup/glTF/tree/main/extensions/2.0/Vendor/EXT_mesh_gpu_instancing/samples/teapots_galore)\r\nAlso add Visualization test.\r\nNote - deleted previous PR for configuration issues.",
+ "author": {
+ "name": "pandaGaume",
+ "url": "https://github.com/pandaGaume"
+ },
+ "files": [
+ "packages/dev/serializers/src/glTF/2.0/Extensions/EXT_mesh_gpu_instancing.ts",
+ "packages/dev/serializers/src/glTF/2.0/Extensions/index.ts",
+ "packages/dev/serializers/src/glTF/2.0/glTFExporter.ts",
+ "packages/dev/serializers/src/glTF/2.0/glTFExporterExtension.ts",
+ "packages/tools/tests/test/visualization/ReferenceImages/glTFSerializerKhrGpuInstancing.png",
+ "packages/tools/tests/test/visualization/config.json"
+ ],
+ "tags": []
+ },
+ {
+ "pr": "12597",
+ "title": "Fix render frame identification issue with instances",
+ "description": null,
+ "author": {
+ "name": "deltakosh",
+ "url": "https://github.com/deltakosh"
+ },
+ "files": [
+ "packages/dev/core/src/Meshes/instancedMesh.ts"
+ ],
+ "tags": [
+ "bug"
+ ]
+ },
+ {
+ "pr": "12595",
+ "title": "Fix `AssetManager` `addTextureTask` resolving with `task.texture === undefined` when using `NullEngine`",
+ "description": "This PR is a follow up on https://forum.babylonjs.com/t/using-assetsmanager-with-nullengine-to-load-textures/8758",
+ "author": {
+ "name": "alvov-evo",
+ "url": "https://github.com/alvov-evo"
+ },
+ "files": [
+ "packages/dev/core/src/Engines/nullEngine.ts",
+ "packages/dev/core/test/unit/Misc/babylon.assetsManager.test.ts"
+ ],
+ "tags": []
+ },
+ {
+ "pr": "12524",
+ "title": "InputManager: Fix Picking on PointerUp and add bool to skip pointerup picking",
+ "description": "Recently on the forums ([forum post](https://forum.babylonjs.com/t/no-api-to-disable-mesh-picking-for-some-buttons-and-keep-onpointerobservable/29887)), there was a user who found an issue with the pointerUpPredicate not being used by the InputManager properly. When a dummy predicate was used (`() => false`), there was still a pickedmesh/point in the pickInfo object. This PR does a couple of things:\r\n- Fix for the picking logic to use the `pointerUpPredicate` and actually call `scene.pick`\r\n- Add a boolean to scene that allows the user to skip picking on pointerup (same as move and down)",
+ "author": {
+ "name": "PolygonalSun",
+ "url": "https://github.com/PolygonalSun"
+ },
+ "files": [
+ "packages/dev/core/src/Inputs/scene.inputManager.ts",
+ "packages/dev/core/src/scene.ts"
+ ],
+ "tags": [
+ "bug"
+ ]
+ },
+ {
+ "pr": "12592",
+ "title": "Make scene param optional for NodeMaterial.ParseFromSnippetAsync",
+ "description": "Make scene param optional for NodeMaterial.ParseFromSnippetAsync\r\n\r\nForum: https://forum.babylonjs.com/t/make-scene-param-optional-for-nodematerial-parsefromsnippetasync/30747/7",
+ "author": {
+ "name": "BlakeOne",
+ "url": "https://github.com/BlakeOne"
+ },
+ "files": [
+ "packages/dev/core/src/Materials/Node/nodeMaterial.ts"
+ ],
+ "tags": []
+ },
+ {
+ "pr": "12594",
+ "title": "fix memory leak",
+ "description": null,
+ "author": {
+ "name": "deltakosh",
+ "url": "https://github.com/deltakosh"
+ },
+ "files": [
+ "packages/dev/core/src/Materials/effect.ts"
+ ],
+ "tags": []
+ },
+ {
+ "pr": "12589",
+ "title": "WebGPU: fix typescript",
+ "description": "See https://forum.babylonjs.com/t/gpuoutofmemoryerror-and-gpuvalidationerror-error-with-latest-5-8-0-release/30755",
+ "author": {
+ "name": "Popov72",
+ "url": "https://github.com/Popov72"
+ },
+ "files": [
+ "packages/dev/core/src/LibDeclarations/webgpu.d.ts"
+ ],
+ "tags": []
+ },
+ {
+ "pr": "12587",
+ "title": "Fix readme.md CDN notes",
+ "description": null,
+ "author": {
+ "name": "dr-vortex",
+ "url": "https://github.com/dr-vortex"
+ },
+ "files": [
+ "readme.md"
+ ],
+ "tags": []
+ },
+ {
+ "pr": "12579",
+ "title": "make sure to watch changes in the assets lib",
+ "description": null,
+ "author": {
+ "name": "RaananW",
+ "url": "https://github.com/RaananW"
+ },
+ "files": [
+ "packages/tools/viewer/webpack.config.js"
+ ],
+ "tags": [
+ "skip changelog"
+ ]
+ }
+ ],
"5.8.0": [
{
"pr": "12588",
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4114514a9076..f7756974403b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,26 @@
# Changelog
+## 5.8.1
+
+### Core
+
+- Add new prepass to compute the specularity-glossiness map whatever the material type - by [Mannns](https://github.com/Mannns) ([#12523](https://github.com/BabylonJS/Babylon.js/pull/12523))
+- Add missing observer trigger - onLoadedObservable notify method for hdrCubeTexture - by [slash9494](https://github.com/slash9494) ([#12601](https://github.com/BabylonJS/Babylon.js/pull/12601))
+- remove private variables from WebGPU declaration - by [RaananW](https://github.com/RaananW) ([#12596](https://github.com/BabylonJS/Babylon.js/pull/12596))
+- Fix render frame identification issue with instances - [_Bug Fix_] by [deltakosh](https://github.com/deltakosh) ([#12597](https://github.com/BabylonJS/Babylon.js/pull/12597))
+- Fix `AssetManager` `addTextureTask` resolving with `task.texture === undefined` when using `NullEngine` - by [alvov-evo](https://github.com/alvov-evo) ([#12595](https://github.com/BabylonJS/Babylon.js/pull/12595))
+- InputManager: Fix Picking on PointerUp and add bool to skip pointerup picking - [_Bug Fix_] by [PolygonalSun](https://github.com/PolygonalSun) ([#12524](https://github.com/BabylonJS/Babylon.js/pull/12524))
+- Make scene param optional for NodeMaterial.ParseFromSnippetAsync - by [BlakeOne](https://github.com/BlakeOne) ([#12592](https://github.com/BabylonJS/Babylon.js/pull/12592))
+- fix memory leak - by [deltakosh](https://github.com/deltakosh) ([#12594](https://github.com/BabylonJS/Babylon.js/pull/12594))
+- WebGPU: fix typescript - by [Popov72](https://github.com/Popov72) ([#12589](https://github.com/BabylonJS/Babylon.js/pull/12589))
+
+### Serializers
+
+- GLTFSerializer : Ext mesh gpu instancing - by [pandaGaume](https://github.com/pandaGaume) ([#12495](https://github.com/BabylonJS/Babylon.js/pull/12495))
+
+### Viewer
+
+
## 5.8.0
### Core
diff --git a/package-lock.json b/package-lock.json
index 0bdd77815c0b..a57869cdee81 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -28488,7 +28488,7 @@
}
},
"packages/public/@babylonjs/core": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"dependencies": {
"tslib": "^2.3.1"
@@ -28501,10 +28501,10 @@
}
},
"packages/public/@babylonjs/gui": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"dependencies": {
- "@babylonjs/core": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
"tslib": "^2.3.1"
},
"devDependencies": {
@@ -28515,11 +28515,11 @@
}
},
"packages/public/@babylonjs/gui-editor": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"dependencies": {
- "@babylonjs/core": "^5.8.0",
- "@babylonjs/gui": "^5.8.0"
+ "@babylonjs/core": "^5.8.1",
+ "@babylonjs/gui": "^5.8.1"
},
"devDependencies": {
"react": "^17.0.2",
@@ -28533,15 +28533,15 @@
}
},
"packages/public/@babylonjs/inspector": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"dependencies": {
- "@babylonjs/core": "^5.8.0",
- "@babylonjs/gui": "^5.8.0",
- "@babylonjs/gui-editor": "^5.8.0",
- "@babylonjs/loaders": "^5.8.0",
- "@babylonjs/materials": "^5.8.0",
- "@babylonjs/serializers": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
+ "@babylonjs/gui": "^5.8.1",
+ "@babylonjs/gui-editor": "^5.8.1",
+ "@babylonjs/loaders": "^5.8.1",
+ "@babylonjs/materials": "^5.8.1",
+ "@babylonjs/serializers": "^5.8.1",
"@fortawesome/fontawesome-svg-core": "^6.1.0",
"@fortawesome/free-regular-svg-icons": "^6.0.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0"
@@ -28559,11 +28559,11 @@
}
},
"packages/public/@babylonjs/loaders": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"dependencies": {
- "@babylonjs/core": "^5.8.0",
- "babylonjs-gltf2interface": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
+ "babylonjs-gltf2interface": "^5.8.1",
"tslib": "^2.3.1"
},
"devDependencies": {
@@ -28574,10 +28574,10 @@
}
},
"packages/public/@babylonjs/materials": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"dependencies": {
- "@babylonjs/core": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
"tslib": "^2.3.1"
},
"devDependencies": {
@@ -28588,10 +28588,10 @@
}
},
"packages/public/@babylonjs/node-editor": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"dependencies": {
- "@babylonjs/core": "^5.8.0"
+ "@babylonjs/core": "^5.8.1"
},
"devDependencies": {
"react": "^17.0.2",
@@ -28605,10 +28605,10 @@
}
},
"packages/public/@babylonjs/post-processes": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"dependencies": {
- "@babylonjs/core": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
"tslib": "^2.3.1"
},
"devDependencies": {
@@ -28619,10 +28619,10 @@
}
},
"packages/public/@babylonjs/procedural-textures": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"dependencies": {
- "@babylonjs/core": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
"tslib": "^2.3.1"
},
"devDependencies": {
@@ -28633,11 +28633,11 @@
}
},
"packages/public/@babylonjs/serializers": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"dependencies": {
- "@babylonjs/core": "^5.8.0",
- "babylonjs-gltf2interface": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
+ "babylonjs-gltf2interface": "^5.8.1",
"tslib": "^2.3.1"
},
"devDependencies": {
@@ -28666,13 +28666,13 @@
}
},
"packages/public/@babylonjs/viewer": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"dependencies": {
- "@babylonjs/core": "^5.8.0",
- "@babylonjs/loaders": "^5.8.0",
- "babylonjs-gltf2interface": "^5.8.0",
- "babylonjs-viewer-assets": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
+ "@babylonjs/loaders": "^5.8.1",
+ "babylonjs-gltf2interface": "^5.8.1",
+ "babylonjs-viewer-assets": "^5.8.1",
"deepmerge": "~4.2.2",
"handlebars": "~4.7.7",
"pepjs": "~0.4.3",
@@ -28685,7 +28685,7 @@
}
},
"packages/public/babylonjs-viewer-assets": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"devDependencies": {
"html-loader": "^3.1.0",
@@ -28701,7 +28701,7 @@
},
"packages/public/glTF2Interface": {
"name": "babylonjs-gltf2interface",
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"devDependencies": {
"rimraf": "^3.0.2",
@@ -28709,7 +28709,7 @@
}
},
"packages/public/umd/babylonjs": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"devDependencies": {
"@dev/build-tools": "1.0.0",
@@ -28724,10 +28724,10 @@
}
},
"packages/public/umd/babylonjs-gui": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"dependencies": {
- "babylonjs": "^5.8.0"
+ "babylonjs": "^5.8.1"
},
"devDependencies": {
"@dev/build-tools": "1.0.0",
@@ -28742,11 +28742,11 @@
}
},
"packages/public/umd/babylonjs-gui-editor": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"dependencies": {
- "babylonjs": "^5.8.0",
- "babylonjs-gui": "^5.8.0"
+ "babylonjs": "^5.8.1",
+ "babylonjs-gui": "^5.8.1"
},
"devDependencies": {
"@dev/build-tools": "1.0.0",
@@ -28769,15 +28769,15 @@
}
},
"packages/public/umd/babylonjs-inspector": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"dependencies": {
- "babylonjs": "^5.8.0",
- "babylonjs-gui": "^5.8.0",
- "babylonjs-gui-editor": "^5.8.0",
- "babylonjs-loaders": "^5.8.0",
- "babylonjs-materials": "^5.8.0",
- "babylonjs-serializers": "^5.8.0"
+ "babylonjs": "^5.8.1",
+ "babylonjs-gui": "^5.8.1",
+ "babylonjs-gui-editor": "^5.8.1",
+ "babylonjs-loaders": "^5.8.1",
+ "babylonjs-materials": "^5.8.1",
+ "babylonjs-serializers": "^5.8.1"
},
"devDependencies": {
"@dev/build-tools": "1.0.0",
@@ -28800,10 +28800,10 @@
}
},
"packages/public/umd/babylonjs-ktx2decoder": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"dependencies": {
- "babylonjs": "^5.8.0"
+ "babylonjs": "^5.8.1"
},
"devDependencies": {
"@dev/build-tools": "1.0.0",
@@ -28819,11 +28819,11 @@
}
},
"packages/public/umd/babylonjs-loaders": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"dependencies": {
- "babylonjs": "^5.8.0",
- "babylonjs-gltf2interface": "^5.8.0"
+ "babylonjs": "^5.8.1",
+ "babylonjs-gltf2interface": "^5.8.1"
},
"devDependencies": {
"@dev/build-tools": "1.0.0",
@@ -28838,10 +28838,10 @@
}
},
"packages/public/umd/babylonjs-materials": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"dependencies": {
- "babylonjs": "^5.8.0"
+ "babylonjs": "^5.8.1"
},
"devDependencies": {
"@dev/build-tools": "1.0.0",
@@ -28856,10 +28856,10 @@
}
},
"packages/public/umd/babylonjs-node-editor": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"dependencies": {
- "babylonjs": "^5.8.0"
+ "babylonjs": "^5.8.1"
},
"devDependencies": {
"@dev/build-tools": "1.0.0",
@@ -28882,10 +28882,10 @@
}
},
"packages/public/umd/babylonjs-post-process": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"dependencies": {
- "babylonjs": "^5.8.0"
+ "babylonjs": "^5.8.1"
},
"devDependencies": {
"@dev/build-tools": "1.0.0",
@@ -28900,10 +28900,10 @@
}
},
"packages/public/umd/babylonjs-procedural-textures": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"dependencies": {
- "babylonjs": "^5.8.0"
+ "babylonjs": "^5.8.1"
},
"devDependencies": {
"@dev/build-tools": "1.0.0",
@@ -28918,11 +28918,11 @@
}
},
"packages/public/umd/babylonjs-serializers": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"dependencies": {
- "babylonjs": "^5.8.0",
- "babylonjs-gltf2interface": "^5.8.0"
+ "babylonjs": "^5.8.1",
+ "babylonjs-gltf2interface": "^5.8.1"
},
"devDependencies": {
"@dev/build-tools": "1.0.0",
@@ -28937,10 +28937,10 @@
}
},
"packages/public/umd/babylonjs-viewer": {
- "version": "5.8.0",
+ "version": "5.8.1",
"license": "Apache-2.0",
"dependencies": {
- "babylonjs-gltf2interface": "^5.8.0"
+ "babylonjs-gltf2interface": "^5.8.1"
},
"devDependencies": {
"@dev/build-tools": "1.0.0",
@@ -30273,7 +30273,7 @@
"@babylonjs/gui": {
"version": "file:packages/public/@babylonjs/gui",
"requires": {
- "@babylonjs/core": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
"@dev/build-tools": "^1.0.0",
"@lts/gui": "1.0.0",
"rimraf": "^3.0.2",
@@ -30284,8 +30284,8 @@
"@babylonjs/gui-editor": {
"version": "file:packages/public/@babylonjs/gui-editor",
"requires": {
- "@babylonjs/core": "^5.8.0",
- "@babylonjs/gui": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
+ "@babylonjs/gui": "^5.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
@@ -30295,12 +30295,12 @@
"@babylonjs/inspector": {
"version": "file:packages/public/@babylonjs/inspector",
"requires": {
- "@babylonjs/core": "^5.8.0",
- "@babylonjs/gui": "^5.8.0",
- "@babylonjs/gui-editor": "^5.8.0",
- "@babylonjs/loaders": "^5.8.0",
- "@babylonjs/materials": "^5.8.0",
- "@babylonjs/serializers": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
+ "@babylonjs/gui": "^5.8.1",
+ "@babylonjs/gui-editor": "^5.8.1",
+ "@babylonjs/loaders": "^5.8.1",
+ "@babylonjs/materials": "^5.8.1",
+ "@babylonjs/serializers": "^5.8.1",
"@fortawesome/fontawesome-svg-core": "^6.1.0",
"@fortawesome/free-regular-svg-icons": "^6.0.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
@@ -30314,10 +30314,10 @@
"@babylonjs/loaders": {
"version": "file:packages/public/@babylonjs/loaders",
"requires": {
- "@babylonjs/core": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
"@dev/build-tools": "^1.0.0",
"@lts/loaders": "^1.0.0",
- "babylonjs-gltf2interface": "^5.8.0",
+ "babylonjs-gltf2interface": "^5.8.1",
"rimraf": "^3.0.2",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
@@ -30326,7 +30326,7 @@
"@babylonjs/materials": {
"version": "file:packages/public/@babylonjs/materials",
"requires": {
- "@babylonjs/core": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
"@dev/build-tools": "^1.0.0",
"@lts/materials": "^1.0.0",
"rimraf": "^3.0.2",
@@ -30337,7 +30337,7 @@
"@babylonjs/node-editor": {
"version": "file:packages/public/@babylonjs/node-editor",
"requires": {
- "@babylonjs/core": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
@@ -30347,7 +30347,7 @@
"@babylonjs/post-processes": {
"version": "file:packages/public/@babylonjs/post-processes",
"requires": {
- "@babylonjs/core": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
"@dev/build-tools": "^1.0.0",
"@lts/post-processes": "^1.0.0",
"rimraf": "^3.0.2",
@@ -30358,7 +30358,7 @@
"@babylonjs/procedural-textures": {
"version": "file:packages/public/@babylonjs/procedural-textures",
"requires": {
- "@babylonjs/core": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
"@dev/build-tools": "^1.0.0",
"@lts/procedural-textures": "^1.0.0",
"rimraf": "^3.0.2",
@@ -30369,10 +30369,10 @@
"@babylonjs/serializers": {
"version": "file:packages/public/@babylonjs/serializers",
"requires": {
- "@babylonjs/core": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
"@dev/build-tools": "^1.0.0",
"@lts/serializers": "^1.0.0",
- "babylonjs-gltf2interface": "^5.8.0",
+ "babylonjs-gltf2interface": "^5.8.1",
"rimraf": "^3.0.2",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
@@ -30390,11 +30390,11 @@
"@babylonjs/viewer": {
"version": "file:packages/public/@babylonjs/viewer",
"requires": {
- "@babylonjs/core": "^5.8.0",
- "@babylonjs/loaders": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
+ "@babylonjs/loaders": "^5.8.1",
"@dev/build-tools": "^1.0.0",
- "babylonjs-gltf2interface": "^5.8.0",
- "babylonjs-viewer-assets": "^5.8.0",
+ "babylonjs-gltf2interface": "^5.8.1",
+ "babylonjs-viewer-assets": "^5.8.1",
"deepmerge": "~4.2.2",
"handlebars": "~4.7.7",
"pepjs": "~0.4.3",
@@ -38038,7 +38038,7 @@
"requires": {
"@dev/build-tools": "1.0.0",
"@lts/gui": "1.0.0",
- "babylonjs": "^5.8.0",
+ "babylonjs": "^5.8.1",
"rimraf": "^3.0.2",
"source-map-loader": "^3.0.0",
"ts-loader": "^9.2.6",
@@ -38056,8 +38056,8 @@
"@tools/gui-editor": "1.0.0",
"@types/react": "^17.0.30",
"@types/react-dom": "^17.0.10",
- "babylonjs": "^5.8.0",
- "babylonjs-gui": "^5.8.0",
+ "babylonjs": "^5.8.1",
+ "babylonjs-gui": "^5.8.1",
"css-loader": "^6.4.0",
"react": "^17.0.2",
"react-contextmenu": "RaananW/react-contextmenu",
@@ -38080,12 +38080,12 @@
"@dev/shared-ui-components": "1.0.0",
"@types/react": "^17.0.30",
"@types/react-dom": "^17.0.10",
- "babylonjs": "^5.8.0",
- "babylonjs-gui": "^5.8.0",
- "babylonjs-gui-editor": "^5.8.0",
- "babylonjs-loaders": "^5.8.0",
- "babylonjs-materials": "^5.8.0",
- "babylonjs-serializers": "^5.8.0",
+ "babylonjs": "^5.8.1",
+ "babylonjs-gui": "^5.8.1",
+ "babylonjs-gui-editor": "^5.8.1",
+ "babylonjs-loaders": "^5.8.1",
+ "babylonjs-materials": "^5.8.1",
+ "babylonjs-serializers": "^5.8.1",
"css-loader": "^6.4.0",
"react": "^17.0.2",
"react-contextmenu": "RaananW/react-contextmenu",
@@ -38106,7 +38106,7 @@
"@dev/build-tools": "1.0.0",
"@lts/gui": "1.0.0",
"@tools/ktx2decoder": "1.0.0",
- "babylonjs": "^5.8.0",
+ "babylonjs": "^5.8.1",
"rimraf": "^3.0.2",
"source-map-loader": "^3.0.0",
"ts-loader": "^9.2.6",
@@ -38121,8 +38121,8 @@
"requires": {
"@dev/build-tools": "1.0.0",
"@lts/loaders": "1.0.0",
- "babylonjs": "^5.8.0",
- "babylonjs-gltf2interface": "^5.8.0",
+ "babylonjs": "^5.8.1",
+ "babylonjs-gltf2interface": "^5.8.1",
"rimraf": "^3.0.2",
"source-map-loader": "^3.0.0",
"ts-loader": "^9.2.6",
@@ -38137,7 +38137,7 @@
"requires": {
"@dev/build-tools": "1.0.0",
"@lts/materials": "1.0.0",
- "babylonjs": "^5.8.0",
+ "babylonjs": "^5.8.1",
"rimraf": "^3.0.2",
"source-map-loader": "^3.0.0",
"ts-loader": "^9.2.6",
@@ -38155,7 +38155,7 @@
"@tools/node-editor": "1.0.0",
"@types/react": "^17.0.30",
"@types/react-dom": "^17.0.10",
- "babylonjs": "^5.8.0",
+ "babylonjs": "^5.8.1",
"css-loader": "^6.4.0",
"react": "^17.0.2",
"react-contextmenu": "RaananW/react-contextmenu",
@@ -38175,7 +38175,7 @@
"requires": {
"@dev/build-tools": "1.0.0",
"@lts/post-processes": "1.0.0",
- "babylonjs": "^5.8.0",
+ "babylonjs": "^5.8.1",
"rimraf": "^3.0.2",
"source-map-loader": "^3.0.0",
"ts-loader": "^9.2.6",
@@ -38190,7 +38190,7 @@
"requires": {
"@dev/build-tools": "1.0.0",
"@lts/procedural-textures": "1.0.0",
- "babylonjs": "^5.8.0",
+ "babylonjs": "^5.8.1",
"rimraf": "^3.0.2",
"source-map-loader": "^3.0.0",
"ts-loader": "^9.2.6",
@@ -38205,8 +38205,8 @@
"requires": {
"@dev/build-tools": "1.0.0",
"@lts/serializers": "1.0.0",
- "babylonjs": "^5.8.0",
- "babylonjs-gltf2interface": "^5.8.0",
+ "babylonjs": "^5.8.1",
+ "babylonjs-gltf2interface": "^5.8.1",
"rimraf": "^3.0.2",
"source-map-loader": "^3.0.0",
"ts-loader": "^9.2.6",
@@ -38224,7 +38224,7 @@
"@dev/loaders": "1.0.0",
"@dev/shared-ui-components": "1.0.0",
"@tools/viewer": "1.0.0",
- "babylonjs-gltf2interface": "^5.8.0",
+ "babylonjs-gltf2interface": "^5.8.1",
"rimraf": "^3.0.2",
"sass-loader": "^12.4.0",
"source-map-loader": "^3.0.0",
diff --git a/packages/dev/core/src/Engines/thinEngine.ts b/packages/dev/core/src/Engines/thinEngine.ts
index 9557aa17f3a7..410e35b71f8c 100644
--- a/packages/dev/core/src/Engines/thinEngine.ts
+++ b/packages/dev/core/src/Engines/thinEngine.ts
@@ -196,14 +196,14 @@ export class ThinEngine {
*/
// Not mixed with Version for tooling purpose.
public static get NpmPackage(): string {
- return "babylonjs@5.8.0";
+ return "babylonjs@5.8.1";
}
/**
* Returns the current version of the framework
*/
public static get Version(): string {
- return "5.8.0";
+ return "5.8.1";
}
/**
diff --git a/packages/public/@babylonjs/core/package.json b/packages/public/@babylonjs/core/package.json
index 29d007b7eb18..4a317967bece 100644
--- a/packages/public/@babylonjs/core/package.json
+++ b/packages/public/@babylonjs/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@babylonjs/core",
- "version": "5.8.0",
+ "version": "5.8.1",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
diff --git a/packages/public/@babylonjs/gui-editor/package.json b/packages/public/@babylonjs/gui-editor/package.json
index 93e0a4dd0176..e652f1972829 100644
--- a/packages/public/@babylonjs/gui-editor/package.json
+++ b/packages/public/@babylonjs/gui-editor/package.json
@@ -1,6 +1,6 @@
{
"name": "@babylonjs/gui-editor",
- "version": "5.8.0",
+ "version": "5.8.1",
"main": "dist/babylon.guiEditor.max.js",
"module": "dist/babylon.guiEditor.max.js",
"esnext": "dist/babylon.guiEditor.max.js",
@@ -18,8 +18,8 @@
"clean": "rimraf dist"
},
"dependencies": {
- "@babylonjs/core": "^5.8.0",
- "@babylonjs/gui": "^5.8.0"
+ "@babylonjs/core": "^5.8.1",
+ "@babylonjs/gui": "^5.8.1"
},
"peerDependencies": {
"@types/react": ">=16.7.3",
diff --git a/packages/public/@babylonjs/gui/package.json b/packages/public/@babylonjs/gui/package.json
index 4c8034566bee..08dd1d553009 100644
--- a/packages/public/@babylonjs/gui/package.json
+++ b/packages/public/@babylonjs/gui/package.json
@@ -1,6 +1,6 @@
{
"name": "@babylonjs/gui",
- "version": "5.8.0",
+ "version": "5.8.1",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
@@ -19,7 +19,7 @@
"prepublishOnly": "build-tools -c prepare-es6-build"
},
"dependencies": {
- "@babylonjs/core": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
"tslib": "^2.3.1"
},
"devDependencies": {
diff --git a/packages/public/@babylonjs/inspector/package.json b/packages/public/@babylonjs/inspector/package.json
index c2560a8dc51c..ad5cf25f35c8 100644
--- a/packages/public/@babylonjs/inspector/package.json
+++ b/packages/public/@babylonjs/inspector/package.json
@@ -1,6 +1,6 @@
{
"name": "@babylonjs/inspector",
- "version": "5.8.0",
+ "version": "5.8.1",
"module": "dist/babylon.inspector.bundle.max.js",
"main": "dist/babylon.inspector.bundle.max.js",
"typings": "dist/babylon.inspector.module.d.ts",
@@ -17,12 +17,12 @@
"clean": "rimraf dist"
},
"dependencies": {
- "@babylonjs/core": "^5.8.0",
- "@babylonjs/gui": "^5.8.0",
- "@babylonjs/gui-editor": "^5.8.0",
- "@babylonjs/loaders": "^5.8.0",
- "@babylonjs/materials": "^5.8.0",
- "@babylonjs/serializers": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
+ "@babylonjs/gui": "^5.8.1",
+ "@babylonjs/gui-editor": "^5.8.1",
+ "@babylonjs/loaders": "^5.8.1",
+ "@babylonjs/materials": "^5.8.1",
+ "@babylonjs/serializers": "^5.8.1",
"@fortawesome/fontawesome-svg-core": "^6.1.0",
"@fortawesome/free-regular-svg-icons": "^6.0.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0"
diff --git a/packages/public/@babylonjs/loaders/package.json b/packages/public/@babylonjs/loaders/package.json
index f20287b0279c..d6ad0cd570d7 100644
--- a/packages/public/@babylonjs/loaders/package.json
+++ b/packages/public/@babylonjs/loaders/package.json
@@ -1,6 +1,6 @@
{
"name": "@babylonjs/loaders",
- "version": "5.8.0",
+ "version": "5.8.1",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
@@ -19,8 +19,8 @@
"prepublishOnly": "build-tools -c prepare-es6-build"
},
"dependencies": {
- "@babylonjs/core": "^5.8.0",
- "babylonjs-gltf2interface": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
+ "babylonjs-gltf2interface": "^5.8.1",
"tslib": "^2.3.1"
},
"devDependencies": {
diff --git a/packages/public/@babylonjs/materials/package.json b/packages/public/@babylonjs/materials/package.json
index b29638cc59f2..27daf3bd77fb 100644
--- a/packages/public/@babylonjs/materials/package.json
+++ b/packages/public/@babylonjs/materials/package.json
@@ -1,6 +1,6 @@
{
"name": "@babylonjs/materials",
- "version": "5.8.0",
+ "version": "5.8.1",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
@@ -19,7 +19,7 @@
"prepublishOnly": "build-tools -c prepare-es6-build"
},
"dependencies": {
- "@babylonjs/core": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
"tslib": "^2.3.1"
},
"devDependencies": {
diff --git a/packages/public/@babylonjs/node-editor/package.json b/packages/public/@babylonjs/node-editor/package.json
index 58ea198209e1..465747dbcb20 100644
--- a/packages/public/@babylonjs/node-editor/package.json
+++ b/packages/public/@babylonjs/node-editor/package.json
@@ -1,6 +1,6 @@
{
"name": "@babylonjs/node-editor",
- "version": "5.8.0",
+ "version": "5.8.1",
"main": "dist/babylon.nodeEditor.max.js",
"module": "dist/babylon.nodeEditor.max.js",
"esnext": "dist/babylon.nodeEditor.max.js",
@@ -18,7 +18,7 @@
"clean": "rimraf dist"
},
"dependencies": {
- "@babylonjs/core": "^5.8.0"
+ "@babylonjs/core": "^5.8.1"
},
"peerDependencies": {
"@types/react": ">=16.7.3",
diff --git a/packages/public/@babylonjs/post-processes/package.json b/packages/public/@babylonjs/post-processes/package.json
index 10db9376a1a2..4c8552f30ecb 100644
--- a/packages/public/@babylonjs/post-processes/package.json
+++ b/packages/public/@babylonjs/post-processes/package.json
@@ -1,6 +1,6 @@
{
"name": "@babylonjs/post-processes",
- "version": "5.8.0",
+ "version": "5.8.1",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
@@ -19,7 +19,7 @@
"prepublishOnly": "build-tools -c prepare-es6-build"
},
"dependencies": {
- "@babylonjs/core": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
"tslib": "^2.3.1"
},
"devDependencies": {
diff --git a/packages/public/@babylonjs/procedural-textures/package.json b/packages/public/@babylonjs/procedural-textures/package.json
index ea9906178694..fe3e77164eea 100644
--- a/packages/public/@babylonjs/procedural-textures/package.json
+++ b/packages/public/@babylonjs/procedural-textures/package.json
@@ -1,6 +1,6 @@
{
"name": "@babylonjs/procedural-textures",
- "version": "5.8.0",
+ "version": "5.8.1",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
@@ -19,7 +19,7 @@
"prepublishOnly": "build-tools -c prepare-es6-build"
},
"dependencies": {
- "@babylonjs/core": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
"tslib": "^2.3.1"
},
"devDependencies": {
diff --git a/packages/public/@babylonjs/serializers/package.json b/packages/public/@babylonjs/serializers/package.json
index 3154bb2e41f5..09177ac72772 100644
--- a/packages/public/@babylonjs/serializers/package.json
+++ b/packages/public/@babylonjs/serializers/package.json
@@ -1,6 +1,6 @@
{
"name": "@babylonjs/serializers",
- "version": "5.8.0",
+ "version": "5.8.1",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
@@ -19,8 +19,8 @@
"prepublishOnly": "build-tools -c prepare-es6-build"
},
"dependencies": {
- "@babylonjs/core": "^5.8.0",
- "babylonjs-gltf2interface": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
+ "babylonjs-gltf2interface": "^5.8.1",
"tslib": "^2.3.1"
},
"devDependencies": {
diff --git a/packages/public/@babylonjs/viewer/package.json b/packages/public/@babylonjs/viewer/package.json
index 6ca4118bac4e..bd11bf34c6c7 100644
--- a/packages/public/@babylonjs/viewer/package.json
+++ b/packages/public/@babylonjs/viewer/package.json
@@ -1,6 +1,6 @@
{
"name": "@babylonjs/viewer",
- "version": "5.8.0",
+ "version": "5.8.1",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
@@ -19,10 +19,10 @@
"prepublishOnly": "build-tools -c prepare-es6-build"
},
"dependencies": {
- "@babylonjs/core": "^5.8.0",
- "@babylonjs/loaders": "^5.8.0",
- "babylonjs-gltf2interface": "^5.8.0",
- "babylonjs-viewer-assets": "^5.8.0",
+ "@babylonjs/core": "^5.8.1",
+ "@babylonjs/loaders": "^5.8.1",
+ "babylonjs-gltf2interface": "^5.8.1",
+ "babylonjs-viewer-assets": "^5.8.1",
"deepmerge": "~4.2.2",
"handlebars": "~4.7.7",
"pepjs": "~0.4.3",
diff --git a/packages/public/babylonjs-viewer-assets/package.json b/packages/public/babylonjs-viewer-assets/package.json
index d5bf69ac8553..42813ccddadf 100644
--- a/packages/public/babylonjs-viewer-assets/package.json
+++ b/packages/public/babylonjs-viewer-assets/package.json
@@ -4,7 +4,7 @@
},
"name": "babylonjs-viewer-assets",
"description": "Compiled resources for the Babylon viewer.",
- "version": "5.8.0",
+ "version": "5.8.1",
"repository": {
"type": "git",
"url": "https://github.com/BabylonJS/Babylon.js.git"
diff --git a/packages/public/glTF2Interface/package.json b/packages/public/glTF2Interface/package.json
index 57dc5877bf57..a14f28e0066a 100644
--- a/packages/public/glTF2Interface/package.json
+++ b/packages/public/glTF2Interface/package.json
@@ -1,7 +1,7 @@
{
"name": "babylonjs-gltf2interface",
"description": "A typescript declaration of babylon's gltf2 interface.",
- "version": "5.8.0",
+ "version": "5.8.1",
"repository": {
"type": "git",
"url": "https://github.com/BabylonJS/Babylon.js.git"
diff --git a/packages/public/umd/babylonjs-gui-editor/package.json b/packages/public/umd/babylonjs-gui-editor/package.json
index 70c301e07434..eca797fad7e2 100644
--- a/packages/public/umd/babylonjs-gui-editor/package.json
+++ b/packages/public/umd/babylonjs-gui-editor/package.json
@@ -1,6 +1,6 @@
{
"name": "babylonjs-gui-editor",
- "version": "5.8.0",
+ "version": "5.8.1",
"main": "babylon.guiEditor.max.js",
"types": "babylon.guiEditor.module.d.ts",
"files": [
@@ -14,8 +14,8 @@
"clean": "rimraf dist && rimraf babylon*.*"
},
"dependencies": {
- "babylonjs": "^5.8.0",
- "babylonjs-gui": "^5.8.0"
+ "babylonjs": "^5.8.1",
+ "babylonjs-gui": "^5.8.1"
},
"devDependencies": {
"@dev/build-tools": "1.0.0",
diff --git a/packages/public/umd/babylonjs-gui/package.json b/packages/public/umd/babylonjs-gui/package.json
index 323d8114e3ee..ae8950d1a8f9 100644
--- a/packages/public/umd/babylonjs-gui/package.json
+++ b/packages/public/umd/babylonjs-gui/package.json
@@ -1,6 +1,6 @@
{
"name": "babylonjs-gui",
- "version": "5.8.0",
+ "version": "5.8.1",
"main": "babylon.gui.js",
"types": "babylon.gui.module.d.ts",
"files": [
@@ -14,7 +14,7 @@
"clean": "rimraf dist && rimraf babylon*.*"
},
"dependencies": {
- "babylonjs": "^5.8.0"
+ "babylonjs": "^5.8.1"
},
"devDependencies": {
"@dev/build-tools": "1.0.0",
diff --git a/packages/public/umd/babylonjs-inspector/package.json b/packages/public/umd/babylonjs-inspector/package.json
index 7eae4d14a890..6419815bcc9b 100644
--- a/packages/public/umd/babylonjs-inspector/package.json
+++ b/packages/public/umd/babylonjs-inspector/package.json
@@ -1,6 +1,6 @@
{
"name": "babylonjs-inspector",
- "version": "5.8.0",
+ "version": "5.8.1",
"main": "babylon.inspector.bundle.max.js",
"types": "babylon.inspector.module.d.ts",
"files": [
@@ -14,12 +14,12 @@
"clean": "rimraf dist && rimraf babylon*.*"
},
"dependencies": {
- "babylonjs": "^5.8.0",
- "babylonjs-gui": "^5.8.0",
- "babylonjs-gui-editor": "^5.8.0",
- "babylonjs-loaders": "^5.8.0",
- "babylonjs-materials": "^5.8.0",
- "babylonjs-serializers": "^5.8.0"
+ "babylonjs": "^5.8.1",
+ "babylonjs-gui": "^5.8.1",
+ "babylonjs-gui-editor": "^5.8.1",
+ "babylonjs-loaders": "^5.8.1",
+ "babylonjs-materials": "^5.8.1",
+ "babylonjs-serializers": "^5.8.1"
},
"devDependencies": {
"@dev/build-tools": "1.0.0",
diff --git a/packages/public/umd/babylonjs-ktx2decoder/package.json b/packages/public/umd/babylonjs-ktx2decoder/package.json
index 1df2176770bc..b09588b3ce66 100644
--- a/packages/public/umd/babylonjs-ktx2decoder/package.json
+++ b/packages/public/umd/babylonjs-ktx2decoder/package.json
@@ -1,6 +1,6 @@
{
"name": "babylonjs-ktx2decoder",
- "version": "5.8.0",
+ "version": "5.8.1",
"main": "babylon.ktx2Decoder.js",
"types": "babylon.ktx2Decoder.module.d.ts",
"files": [
@@ -14,7 +14,7 @@
"clean": "rimraf dist && rimraf babylon*.*"
},
"dependencies": {
- "babylonjs": "^5.8.0"
+ "babylonjs": "^5.8.1"
},
"devDependencies": {
"@dev/build-tools": "1.0.0",
diff --git a/packages/public/umd/babylonjs-loaders/package.json b/packages/public/umd/babylonjs-loaders/package.json
index 7750335096f6..fcd8a32705cd 100644
--- a/packages/public/umd/babylonjs-loaders/package.json
+++ b/packages/public/umd/babylonjs-loaders/package.json
@@ -1,6 +1,6 @@
{
"name": "babylonjs-loaders",
- "version": "5.8.0",
+ "version": "5.8.1",
"main": "babylonjs.loaders.js",
"types": "babylonjs.loaders.module.d.ts",
"files": [
@@ -14,8 +14,8 @@
"clean": "rimraf dist && rimraf babylon*.*"
},
"dependencies": {
- "babylonjs": "^5.8.0",
- "babylonjs-gltf2interface": "^5.8.0"
+ "babylonjs": "^5.8.1",
+ "babylonjs-gltf2interface": "^5.8.1"
},
"devDependencies": {
"@dev/build-tools": "1.0.0",
diff --git a/packages/public/umd/babylonjs-materials/package.json b/packages/public/umd/babylonjs-materials/package.json
index 70af4a13e6e0..e22eb61f92ea 100644
--- a/packages/public/umd/babylonjs-materials/package.json
+++ b/packages/public/umd/babylonjs-materials/package.json
@@ -1,6 +1,6 @@
{
"name": "babylonjs-materials",
- "version": "5.8.0",
+ "version": "5.8.1",
"main": "babylonjs.materials.js",
"types": "babylonjs.materials.module.d.ts",
"files": [
@@ -14,7 +14,7 @@
"clean": "rimraf dist && rimraf babylon*.*"
},
"dependencies": {
- "babylonjs": "^5.8.0"
+ "babylonjs": "^5.8.1"
},
"devDependencies": {
"@dev/build-tools": "1.0.0",
diff --git a/packages/public/umd/babylonjs-node-editor/package.json b/packages/public/umd/babylonjs-node-editor/package.json
index b11afab94c7f..6f6f99115d70 100644
--- a/packages/public/umd/babylonjs-node-editor/package.json
+++ b/packages/public/umd/babylonjs-node-editor/package.json
@@ -1,6 +1,6 @@
{
"name": "babylonjs-node-editor",
- "version": "5.8.0",
+ "version": "5.8.1",
"main": "babylon.nodeEditor.js",
"types": "babylon.nodeEditor.module.d.ts",
"files": [
@@ -14,7 +14,7 @@
"clean": "rimraf dist && rimraf babylon*.*"
},
"dependencies": {
- "babylonjs": "^5.8.0"
+ "babylonjs": "^5.8.1"
},
"devDependencies": {
"@dev/build-tools": "1.0.0",
diff --git a/packages/public/umd/babylonjs-post-process/package.json b/packages/public/umd/babylonjs-post-process/package.json
index c6345541a7f9..51e43ce80d64 100644
--- a/packages/public/umd/babylonjs-post-process/package.json
+++ b/packages/public/umd/babylonjs-post-process/package.json
@@ -1,6 +1,6 @@
{
"name": "babylonjs-post-process",
- "version": "5.8.0",
+ "version": "5.8.1",
"main": "babylonjs.postProcess.min.js",
"types": "babylonjs.postProcess.module.d.ts",
"files": [
@@ -14,7 +14,7 @@
"clean": "rimraf dist && rimraf babylon*.*"
},
"dependencies": {
- "babylonjs": "^5.8.0"
+ "babylonjs": "^5.8.1"
},
"devDependencies": {
"@dev/build-tools": "1.0.0",
diff --git a/packages/public/umd/babylonjs-procedural-textures/package.json b/packages/public/umd/babylonjs-procedural-textures/package.json
index d18d263a5b30..ff28623f2b04 100644
--- a/packages/public/umd/babylonjs-procedural-textures/package.json
+++ b/packages/public/umd/babylonjs-procedural-textures/package.json
@@ -1,6 +1,6 @@
{
"name": "babylonjs-procedural-textures",
- "version": "5.8.0",
+ "version": "5.8.1",
"main": "babylonjs.proceduralTextures.js",
"types": "babylonjs.proceduralTextures.module.d.ts",
"files": [
@@ -14,7 +14,7 @@
"clean": "rimraf dist && rimraf babylon*.*"
},
"dependencies": {
- "babylonjs": "^5.8.0"
+ "babylonjs": "^5.8.1"
},
"devDependencies": {
"@dev/build-tools": "1.0.0",
diff --git a/packages/public/umd/babylonjs-serializers/package.json b/packages/public/umd/babylonjs-serializers/package.json
index 039026fcf438..cca630481594 100644
--- a/packages/public/umd/babylonjs-serializers/package.json
+++ b/packages/public/umd/babylonjs-serializers/package.json
@@ -1,6 +1,6 @@
{
"name": "babylonjs-serializers",
- "version": "5.8.0",
+ "version": "5.8.1",
"main": "babylonjs.serializers.js",
"types": "babylonjs.serializers.module.d.ts",
"files": [
@@ -14,8 +14,8 @@
"clean": "rimraf dist && rimraf babylon*.*"
},
"dependencies": {
- "babylonjs": "^5.8.0",
- "babylonjs-gltf2interface": "^5.8.0"
+ "babylonjs": "^5.8.1",
+ "babylonjs-gltf2interface": "^5.8.1"
},
"devDependencies": {
"@dev/build-tools": "1.0.0",
diff --git a/packages/public/umd/babylonjs-viewer/package.json b/packages/public/umd/babylonjs-viewer/package.json
index 3fc2d5c1a7c1..94f0ede0fd11 100644
--- a/packages/public/umd/babylonjs-viewer/package.json
+++ b/packages/public/umd/babylonjs-viewer/package.json
@@ -1,6 +1,6 @@
{
"name": "babylonjs-viewer",
- "version": "5.8.0",
+ "version": "5.8.1",
"main": "babylon.viewer.js",
"types": "babylon.viewer.module.d.ts",
"files": [
@@ -14,7 +14,7 @@
"clean": "rimraf dist && rimraf babylon*.*"
},
"dependencies": {
- "babylonjs-gltf2interface": "^5.8.0"
+ "babylonjs-gltf2interface": "^5.8.1"
},
"devDependencies": {
"@dev/build-tools": "1.0.0",
diff --git a/packages/public/umd/babylonjs/package.json b/packages/public/umd/babylonjs/package.json
index 40a801cba73a..f43d6b54ef46 100644
--- a/packages/public/umd/babylonjs/package.json
+++ b/packages/public/umd/babylonjs/package.json
@@ -1,6 +1,6 @@
{
"name": "babylonjs",
- "version": "5.8.0",
+ "version": "5.8.1",
"main": "babylon.js",
"types": "babylon.module.d.ts",
"files": [