@babylonjs/core 6.48.0 → 6.49.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.
Files changed (62) hide show
  1. package/Behaviors/Meshes/baseSixDofDragBehavior.js +6 -6
  2. package/Behaviors/Meshes/baseSixDofDragBehavior.js.map +1 -1
  3. package/Behaviors/Meshes/sixDofDragBehavior.d.ts +1 -0
  4. package/Behaviors/Meshes/sixDofDragBehavior.js +5 -1
  5. package/Behaviors/Meshes/sixDofDragBehavior.js.map +1 -1
  6. package/Engines/ICanvas.d.ts +10 -0
  7. package/Engines/ICanvas.js.map +1 -1
  8. package/Engines/Native/nativeDataStream.d.ts +2 -1
  9. package/Engines/Native/nativeDataStream.js.map +1 -1
  10. package/Engines/Native/nativePipelineContext.js.map +1 -1
  11. package/Engines/WebGL/webGLPipelineContext.js.map +1 -1
  12. package/Engines/WebGPU/webgpuShaderProcessorsWGSL.js +6 -4
  13. package/Engines/WebGPU/webgpuShaderProcessorsWGSL.js.map +1 -1
  14. package/Engines/nativeEngine.d.ts +2 -2
  15. package/Engines/nativeEngine.js.map +1 -1
  16. package/Engines/thinEngine.d.ts +2 -2
  17. package/Engines/thinEngine.js +2 -2
  18. package/Engines/thinEngine.js.map +1 -1
  19. package/Materials/PBR/pbrSubSurfaceConfiguration.js +6 -0
  20. package/Materials/PBR/pbrSubSurfaceConfiguration.js.map +1 -1
  21. package/Maths/math.like.d.ts +2 -2
  22. package/Maths/math.like.js.map +1 -1
  23. package/Maths/math.vector.d.ts +1 -1
  24. package/Maths/math.vector.js.map +1 -1
  25. package/Maths/tensor.d.ts +12 -8
  26. package/Maths/tensor.js.map +1 -1
  27. package/Meshes/Compression/dracoCompression.d.ts +12 -0
  28. package/Meshes/Compression/dracoCompression.js +20 -14
  29. package/Meshes/Compression/dracoCompression.js.map +1 -1
  30. package/Meshes/Node/Blocks/geometryDistanceBlock.js +1 -0
  31. package/Meshes/Node/Blocks/geometryDistanceBlock.js.map +1 -1
  32. package/Meshes/Node/Blocks/geometryDotBlock.js +1 -0
  33. package/Meshes/Node/Blocks/geometryDotBlock.js.map +1 -1
  34. package/Meshes/Node/Blocks/geometryLengthBlock.js +1 -0
  35. package/Meshes/Node/Blocks/geometryLengthBlock.js.map +1 -1
  36. package/Meshes/Node/Blocks/geometryTrigonometryBlock.js +1 -0
  37. package/Meshes/Node/Blocks/geometryTrigonometryBlock.js.map +1 -1
  38. package/Meshes/abstractMesh.d.ts +5 -2
  39. package/Meshes/abstractMesh.js +5 -2
  40. package/Meshes/abstractMesh.js.map +1 -1
  41. package/Meshes/thinInstanceMesh.d.ts +9 -0
  42. package/Meshes/thinInstanceMesh.js +31 -4
  43. package/Meshes/thinInstanceMesh.js.map +1 -1
  44. package/Particles/pointsCloudSystem.js +26 -29
  45. package/Particles/pointsCloudSystem.js.map +1 -1
  46. package/Rendering/GlobalIllumination/giRSMManager.d.ts +1 -1
  47. package/Rendering/GlobalIllumination/giRSMManager.js +1 -1
  48. package/Rendering/GlobalIllumination/giRSMManager.js.map +1 -1
  49. package/Rendering/reflectiveShadowMap.d.ts +5 -4
  50. package/Rendering/reflectiveShadowMap.js +1 -1
  51. package/Rendering/reflectiveShadowMap.js.map +1 -1
  52. package/Shaders/ShadersInclude/pbrDebug.js +1 -1
  53. package/Shaders/ShadersInclude/pbrDebug.js.map +1 -1
  54. package/Shaders/pbr.vertex.js +1 -1
  55. package/Shaders/pbr.vertex.js.map +1 -1
  56. package/XR/features/WebXRControllerPointerSelection.js +11 -0
  57. package/XR/features/WebXRControllerPointerSelection.js.map +1 -1
  58. package/assets/Basis/basis_transcoder.wasm +0 -0
  59. package/assets/Draco/draco_decoder_gltf.wasm +0 -0
  60. package/package.json +2 -1
  61. package/types.d.ts +1 -1
  62. package/types.js.map +1 -1
@@ -4,7 +4,7 @@ import { Effect } from "../Materials/effect";
4
4
  import type { IShaderProcessor } from "./Processors/iShaderProcessor";
5
5
  import type { ShaderProcessingContext } from "./Processors/shaderProcessingOptions";
6
6
  import type { UniformBuffer } from "../Materials/uniformBuffer";
7
- import type { Nullable, DataArray, IndicesArray } from "../types";
7
+ import type { Nullable, DataArray, IndicesArray, FloatArray, DeepImmutable } from "../types";
8
8
  import type { EngineCapabilities } from "./engineCapabilities";
9
9
  import { Observable } from "../Misc/observable";
10
10
  import { DepthCullingState } from "../States/depthCullingState";
@@ -1233,7 +1233,7 @@ export declare class ThinEngine {
1233
1233
  * @param matrices defines the array of float32 to store
1234
1234
  * @returns true if the value was set
1235
1235
  */
1236
- setMatrices(uniform: Nullable<WebGLUniformLocation>, matrices: Float32Array): boolean;
1236
+ setMatrices(uniform: Nullable<WebGLUniformLocation>, matrices: DeepImmutable<FloatArray>): boolean;
1237
1237
  /**
1238
1238
  * Set the value of an uniform to a matrix (3x3)
1239
1239
  * @param uniform defines the webGL uniform location where to store the value
@@ -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.48.0";
37
+ return "babylonjs@6.49.0";
38
38
  }
39
39
  /**
40
40
  * Returns the current version of the framework
41
41
  */
42
42
  static get Version() {
43
- return "6.48.0";
43
+ return "6.49.0";
44
44
  }
45
45
  /**
46
46
  * Returns a string describing the current engine