UNPKG

@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.

22 lines (21 loc) 852 B
/** * Registers all event flow graph blocks for deserialization. */ export declare function RegisterFlowGraphEventBlocks(): void; /** * Registers all execution flow graph blocks for deserialization. */ export declare function RegisterFlowGraphExecutionBlocks(): void; /** * Registers all data flow graph blocks for deserialization. */ export declare function RegisterFlowGraphDataBlocks(): void; /** * Registers all flow graph blocks in the type store. * * Note: Unlike other block systems, FlowGraph deserialization uses dynamic `import()` via * `blockFactory()` and does NOT require pre-registration. This function is provided for * architectural consistency and for scenarios where eager class registration is needed * (e.g., external tooling that queries the type store). */ export declare function RegisterAllFlowGraphBlocks(): void;