babylonjs-serializers 8.2.0 → 8.2.2

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.
@@ -56,7 +56,7 @@ declare module BABYLON {
56
56
  * @param meshes the meshes that use the vertex buffer
57
57
  * @returns the information necessary to enumerate the vertex buffer
58
58
  */
59
- export function GetVertexBufferInfo(vertexBuffer: VertexBuffer, meshes: Mesh[]): {
59
+ export function GetVertexBufferInfo(vertexBuffer: VertexBuffer, meshes: AbstractMesh[]): {
60
60
  byteOffset: number;
61
61
  byteStride: number;
62
62
  componentCount: number;
@@ -207,7 +207,7 @@ declare module BABYLON {
207
207
  influence: number;
208
208
  name: string;
209
209
  }
210
- export function BuildMorphTargetBuffers(morphTarget: MorphTarget, mesh: Mesh, bufferManager: BufferManager, bufferViews: BABYLON.GLTF2.IBufferView[], accessors: BABYLON.GLTF2.IAccessor[], convertToRightHanded: boolean): IMorphTargetData;
210
+ export function BuildMorphTargetBuffers(morphTarget: MorphTarget, mesh: AbstractMesh, bufferManager: BufferManager, bufferViews: BABYLON.GLTF2.IBufferView[], accessors: BABYLON.GLTF2.IAccessor[], convertToRightHanded: boolean): IMorphTargetData;
211
211
 
212
212
 
213
213
  /**