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.

32 lines 1.51 kB
import { RegisterClass } from "../../../../Misc/typeStore.js"; import { FlowGraphExecutionBlockWithOutSignal } from "../../../flowGraphExecutionBlockWithOutSignal.js"; import { RichTypeFlowGraphInteger } from "../../../flowGraphRichTypes.js"; import { getNumericValue } from "../../../utils.js"; /** * This block cancels a delay that was previously scheduled. */ export class FlowGraphCancelDelayBlock extends FlowGraphExecutionBlockWithOutSignal { constructor(config) { super(config); this.delayIndex = this.registerDataInput("delayIndex", RichTypeFlowGraphInteger); } _execute(context, _callingSignal) { const delayIndex = getNumericValue(this.delayIndex.getValue(context)); if (delayIndex <= 0 || isNaN(delayIndex) || !isFinite(delayIndex)) { return this._reportError(context, "Invalid delay index"); } const timers = context._getGlobalContextVariable("pendingDelays", []); const timer = timers[delayIndex]; if (timer) { timer.dispose(); // not removing it from the array. Disposing it will clear all of its resources } // activate the out output flow this.out._activateSignal(context); } getClassName() { return "FlowGraphCancelDelayBlock" /* FlowGraphBlockNames.CancelDelay */; } } RegisterClass("FlowGraphCancelDelayBlock" /* FlowGraphBlockNames.CancelDelay */, FlowGraphCancelDelayBlock); //# sourceMappingURL=flowGraphCancelDelayBlock.js.map