@babylonjs/core
Version:
Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.
14 lines (13 loc) • 662 B
TypeScript
import type { FlowGraphContext } from "./flowGraphContext.js";
import type { IPathToObjectConverter, IObjectInfo } from "../ObjectModel/objectModelInterfaces.js";
import type { IObjectAccessor } from "./typeDefinitions.js";
/**
* @deprecated Avoid using this on the flow-graph (glTF only)
* A path converter that converts a path on the flow graph context variables to an object accessor.
*/
export declare class FlowGraphPathConverter implements IPathToObjectConverter<IObjectAccessor> {
private _context;
private _separator;
constructor(_context: FlowGraphContext, _separator?: string);
convert(path: string): IObjectInfo<IObjectAccessor>;
}