@babylonjs/core 7.44.1 → 7.45.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/abstractEngine.js +2 -2
- package/Engines/abstractEngine.js.map +1 -1
- package/Materials/PBR/pbrBRDFConfiguration.d.ts +14 -0
- package/Materials/PBR/pbrBRDFConfiguration.js +19 -0
- package/Materials/PBR/pbrBRDFConfiguration.js.map +1 -1
- package/Misc/error.d.ts +6 -0
- package/Misc/error.js +10 -0
- package/Misc/error.js.map +1 -1
- package/Shaders/ShadersInclude/pbrBlockReflection.js +7 -1
- package/Shaders/ShadersInclude/pbrBlockReflection.js.map +1 -1
- package/Shaders/gaussianSplatting.vertex.d.ts +1 -0
- package/Shaders/gaussianSplatting.vertex.js +3 -1
- package/Shaders/gaussianSplatting.vertex.js.map +1 -1
- package/ShadersWGSL/ShadersInclude/pbrBlockReflection.js +7 -1
- package/ShadersWGSL/ShadersInclude/pbrBlockReflection.js.map +1 -1
- package/ShadersWGSL/glowMapGeneration.fragment.js +1 -2
- package/ShadersWGSL/glowMapGeneration.fragment.js.map +1 -1
- package/ShadersWGSL/layer.fragment.js +1 -2
- package/ShadersWGSL/layer.fragment.js.map +1 -1
- package/XR/features/WebXRHandTracking.js +2 -2
- package/XR/features/WebXRHandTracking.js.map +1 -1
- package/package.json +1 -1
|
@@ -769,13 +769,13 @@ export class AbstractEngine {
|
|
|
769
769
|
*/
|
|
770
770
|
// Not mixed with Version for tooling purpose.
|
|
771
771
|
static get NpmPackage() {
|
|
772
|
-
return "babylonjs@7.
|
|
772
|
+
return "babylonjs@7.45.0";
|
|
773
773
|
}
|
|
774
774
|
/**
|
|
775
775
|
* Returns the current version of the framework
|
|
776
776
|
*/
|
|
777
777
|
static get Version() {
|
|
778
|
-
return "7.
|
|
778
|
+
return "7.45.0";
|
|
779
779
|
}
|
|
780
780
|
/**
|
|
781
781
|
* Gets the HTML canvas attached with the current webGL context
|