@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.
@@ -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 arrays the arrays of the interactivity object
153
- * @param serializedObjects the serialized object
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[];