UNPKG

@babylonjs/viewer

Version:

The Babylon Viewer aims to simplify a specific but common Babylon.js use case: loading, viewing, and interacting with a 3D model.

56 lines (53 loc) 1.98 kB
import { R as RegisterClass } from './index-FzOfPXLV.esm.js'; import { k as FlowGraphExecutionBlock } from './KHR_interactivity-Bmb38TjL.esm.js'; import './declarationMapper-rcGCdcDP.esm.js'; import './objectModelMapping-CJnQ6at_.esm.js'; /** * A block that executes its output flows in sequence. */ class FlowGraphSequenceBlock extends FlowGraphExecutionBlock { constructor( /** * the configuration of the block */ config) { super(config); this.config = config; /** * The output flows. */ this.executionSignals = []; this.setNumberOfOutputSignals(this.config.outputSignalCount); } _execute(context) { for (let i = 0; i < this.executionSignals.length; i++) { this.executionSignals[i]._activateSignal(context); } } /** * Sets the block's output flows. Would usually be passed from the constructor but can be changed afterwards. * @param outputSignalCount the number of output flows */ setNumberOfOutputSignals(outputSignalCount = 1) { // check the size of the outFlow Array, see if it is not larger than needed while (this.executionSignals.length > outputSignalCount) { const flow = this.executionSignals.pop(); if (flow) { flow.disconnectFromAll(); this._unregisterSignalOutput(flow.name); } } while (this.executionSignals.length < outputSignalCount) { this.executionSignals.push(this._registerSignalOutput(`out_${this.executionSignals.length}`)); } } /** * @returns class name of the block. */ getClassName() { return "FlowGraphSequenceBlock" /* FlowGraphBlockNames.Sequence */; } } RegisterClass("FlowGraphSequenceBlock" /* FlowGraphBlockNames.Sequence */, FlowGraphSequenceBlock); export { FlowGraphSequenceBlock }; //# sourceMappingURL=flowGraphSequenceBlock-Ba-EQJ2C.esm.js.map