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.

42 lines 1.63 kB
import { FlowGraphBlock } from "../../../flowGraphBlock.js"; import { RichTypeAny, RichTypeFlowGraphInteger } from "../../../flowGraphRichTypes.js"; import { RegisterClass } from "../../../../Misc/typeStore.js"; import { FlowGraphInteger } from "../../../CustomTypes/flowGraphInteger.js"; /** * This block takes an object as input and an array and returns the index of the object in the array. */ export 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); //# sourceMappingURL=flowGraphIndexOfBlock.js.map