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.

18 lines (17 loc) 911 B
import type { IFlowGraphBlockConfiguration } from "../../../flowGraphBlock"; import type { FlowGraphContext } from "../../../flowGraphContext"; import type { FlowGraphDataConnection } from "../../../flowGraphDataConnection"; import { FlowGraphExecutionBlockWithOutSignal } from "../../../flowGraphExecutionBlockWithOutSignal"; import type { FlowGraphSignalConnection } from "../../../flowGraphSignalConnection"; /** * This block cancels a delay that was previously scheduled. */ export declare class FlowGraphCancelDelayBlock extends FlowGraphExecutionBlockWithOutSignal { /** * Input connection: The index value of the scheduled activation to be cancelled. */ readonly delayIndex: FlowGraphDataConnection<number>; constructor(config?: IFlowGraphBlockConfiguration); _execute(context: FlowGraphContext, _callingSignal: FlowGraphSignalConnection): void; getClassName(): string; }