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.

13 lines 600 B
import { FlowGraphExecutionBlock } from "./flowGraphExecutionBlock.js"; /** * An execution block that has an out signal. This signal is triggered when the synchronous execution of this block is done. * Most execution blocks will inherit from this, except for the ones that have multiple signals to be triggered. * (such as if blocks) */ export class FlowGraphExecutionBlockWithOutSignal extends FlowGraphExecutionBlock { constructor(config) { super(config); this.out = this._registerSignalOutput("out"); } } //# sourceMappingURL=flowGraphExecutionBlockWithOutSignal.js.map