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.

46 lines (43 loc) 1.69 kB
import { F as FlowGraphBlock } from './KHR_interactivity-Bmb38TjL.esm.js'; import { R as RichTypeAny, k as RichTypeFlowGraphInteger, b as FlowGraphInteger } from './declarationMapper-rcGCdcDP.esm.js'; import { R as RegisterClass } from './index-FzOfPXLV.esm.js'; import './objectModelMapping-CJnQ6at_.esm.js'; /** * This block takes an object as input and an array and returns the index of the object in the array. */ class FlowGraphIndexOfBlock extends FlowGraphBlock { /** * Construct a FlowGraphIndexOfBlock. * @param config construction parameters */ constructor(config) { super(config); this.config = config; this.object = this.registerDataInput("object", RichTypeAny); this.array = this.registerDataInput("array", RichTypeAny); this.index = this.registerDataOutput("index", RichTypeFlowGraphInteger, new FlowGraphInteger(-1)); } /** * @internal */ _updateOutputs(context) { const object = this.object.getValue(context); const array = this.array.getValue(context); if (array) { this.index.setValue(new FlowGraphInteger(array.indexOf(object)), context); } } /** * Serializes this block * @param serializationObject the object to serialize to */ serialize(serializationObject) { super.serialize(serializationObject); } getClassName() { return "FlowGraphIndexOfBlock" /* FlowGraphBlockNames.IndexOf */; } } RegisterClass("FlowGraphIndexOfBlock" /* FlowGraphBlockNames.IndexOf */, FlowGraphIndexOfBlock); export { FlowGraphIndexOfBlock }; //# sourceMappingURL=flowGraphIndexOfBlock-BKhBExnK.esm.js.map