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.
- package/babylon.glTF2Serializer.js +19 -15
- package/babylon.glTF2Serializer.min.js +1 -1
- package/babylon.glTF2Serializer.min.js.map +1 -1
- package/babylonjs.serializers.d.ts +2 -2
- package/babylonjs.serializers.js +19 -15
- package/babylonjs.serializers.min.js +1 -1
- package/babylonjs.serializers.min.js.map +1 -1
- package/babylonjs.serializers.module.d.ts +6 -6
- package/package.json +3 -3
|
@@ -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:
|
|
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:
|
|
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
|
/**
|