interactivityPathToObjectConverter.d.ts 429 B

123456789
  1. import type { IGLTF } from "../glTFLoaderInterfaces";
  2. import { GLTFPathToObjectConverter } from "./gltfPathToObjectConverter";
  3. import type { IObjectAccessor } from "@babylonjs/core/FlowGraph/typeDefinitions.js";
  4. /**
  5. * Class to convert an interactivity pointer path to a smart object
  6. */
  7. export declare class InteractivityPathToObjectConverter extends GLTFPathToObjectConverter<IObjectAccessor> {
  8. constructor(gltf: IGLTF);
  9. }