interactivityFunctions.d.ts 428 B

123456789
  1. import type { IKHRInteractivity } from "babylonjs-gltf2interface";
  2. import type { ISerializedFlowGraph } from "@babylonjs/core/FlowGraph/typeDefinitions.js";
  3. /**
  4. * @internal
  5. * Converts a glTF Interactivity Extension to a serialized flow graph.
  6. * @param gltf the interactivity data
  7. * @returns a serialized flow graph
  8. */
  9. export declare function convertGLTFToSerializedFlowGraph(gltf: IKHRInteractivity): ISerializedFlowGraph;