@babylonjs/loaders 8.54.0 → 8.54.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/OBJ/solidParser.js +1 -1
- package/OBJ/solidParser.js.map +1 -1
- package/glTF/1.0/glTFLoader.js +7 -7
- package/glTF/1.0/glTFLoader.js.map +1 -1
- package/glTF/2.0/Extensions/KHR_interactivity/declarationMapper.d.ts +6 -2
- package/glTF/2.0/Extensions/KHR_interactivity/declarationMapper.js.map +1 -1
- package/glTF/2.0/Extensions/KHR_materials_variants.js +1 -1
- package/glTF/2.0/Extensions/KHR_materials_variants.js.map +1 -1
- package/glTF/2.0/glTFLoader.js +2 -2
- package/glTF/2.0/glTFLoader.js.map +1 -1
- package/package.json +3 -3
|
@@ -135,6 +135,7 @@ export interface IGLTFToFlowGraphMapping {
|
|
|
135
135
|
* Note that this function can also modify the node, if needed.
|
|
136
136
|
*
|
|
137
137
|
* @param gltfBlock the glTF node to validate
|
|
138
|
+
* @param interactivityGraph the interactivity graph
|
|
138
139
|
* @param glTFObject the glTF object
|
|
139
140
|
* @returns true if validated, false if not.
|
|
140
141
|
*/
|
|
@@ -148,9 +149,12 @@ export interface IGLTFToFlowGraphMapping {
|
|
|
148
149
|
* Returning more than one block will usually happen when a json pointer was provided.
|
|
149
150
|
*
|
|
150
151
|
* @param gltfBlock the glTF node
|
|
152
|
+
* @param declaration the declaration object
|
|
151
153
|
* @param mapping the mapping object
|
|
152
|
-
* @param
|
|
153
|
-
* @param serializedObjects the serialized
|
|
154
|
+
* @param parser the interactivity graph parser
|
|
155
|
+
* @param serializedObjects the serialized objects
|
|
156
|
+
* @param context the serialized flow graph context
|
|
157
|
+
* @param globalGLTF the global gltf object
|
|
154
158
|
* @returns an array of serialized nodes that will be added to the graph.
|
|
155
159
|
*/
|
|
156
160
|
extraProcessor?: (gltfBlock: IKHRInteractivity_Node, declaration: IKHRInteractivity_Declaration, mapping: IGLTFToFlowGraphMapping, parser: InteractivityGraphToFlowGraphParser, serializedObjects: ISerializedFlowGraphBlock[], context: ISerializedFlowGraphContext, globalGLTF?: IGLTF) => ISerializedFlowGraphBlock[];
|