@babylonjs/core 6.45.0 → 6.45.1
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 +1 -1
- package/Engines/thinEngine.js +2 -2
- package/Engines/thinEngine.js.map +1 -1
- package/Engines/webgpuEngine.js +2 -15
- package/Engines/webgpuEngine.js.map +1 -1
- package/Materials/Node/nodeMaterial.js +3 -0
- package/Materials/Node/nodeMaterial.js.map +1 -1
- package/package.json +1 -1
package/Engines/engine.d.ts
CHANGED
|
@@ -2947,7 +2947,7 @@ interface XRHand extends Map<XRHandJoint, XRJointSpace> {
|
|
|
2947
2947
|
readonly LITTLE_PHALANX_TIP: number;
|
|
2948
2948
|
}
|
|
2949
2949
|
|
|
2950
|
-
abstract class XRHand extends Map<
|
|
2950
|
+
abstract class XRHand extends Map<XRHandJoint, XRJointSpace> implements XRHand {}
|
|
2951
2951
|
|
|
2952
2952
|
// WebXR Layers
|
|
2953
2953
|
|
package/Engines/thinEngine.js
CHANGED
|
@@ -34,13 +34,13 @@ export class ThinEngine {
|
|
|
34
34
|
*/
|
|
35
35
|
// Not mixed with Version for tooling purpose.
|
|
36
36
|
static get NpmPackage() {
|
|
37
|
-
return "babylonjs@6.45.
|
|
37
|
+
return "babylonjs@6.45.1";
|
|
38
38
|
}
|
|
39
39
|
/**
|
|
40
40
|
* Returns the current version of the framework
|
|
41
41
|
*/
|
|
42
42
|
static get Version() {
|
|
43
|
-
return "6.45.
|
|
43
|
+
return "6.45.1";
|
|
44
44
|
}
|
|
45
45
|
/**
|
|
46
46
|
* Returns a string describing the current engine
|