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.

68 lines (64 loc) 2.39 kB
import { F as FlowGraphBlock, g as getNumericValue } from './KHR_interactivity-CEwUaqxQ.esm.js'; import { R as RichTypeAny, F as FlowGraphInteger } from './declarationMapper-CqO08-WM.esm.js'; import { u as RegisterClass } from './index-MZPybX0H.esm.js'; import './objectModelMapping-De5EKNEZ.esm.js'; import './spotLight.pure-CRdZC6Ci.esm.js'; /** This file must only contain pure code and pure imports */ /** * This simple Util block takes an array as input and selects a single element from it. */ class FlowGraphArrayIndexBlock extends FlowGraphBlock { /** * Construct a FlowGraphArrayIndexBlock. * @param config construction parameters */ constructor(config) { super(config); this.config = config; this.array = this.registerDataInput("array", RichTypeAny); this.index = this.registerDataInput("index", RichTypeAny, new FlowGraphInteger(-1)); this.value = this.registerDataOutput("value", RichTypeAny); } /** * @internal */ _updateOutputs(context) { const array = this.array.getValue(context); const index = getNumericValue(this.index.getValue(context)); if (array && index >= 0 && index < array.length) { this.value.setValue(array[index], context); } else { this.value.setValue(null, context); } } /** * Serializes this block * @param serializationObject the object to serialize to */ serialize(serializationObject) { super.serialize(serializationObject); } getClassName() { return "FlowGraphArrayIndexBlock" /* FlowGraphBlockNames.ArrayIndex */; } } let _Registered = false; /** * Register side effects for flowGraphArrayIndexBlock. * Safe to call multiple times; only the first call has an effect. */ function RegisterFlowGraphArrayIndexBlock() { if (_Registered) { return; } _Registered = true; RegisterClass("FlowGraphArrayIndexBlock" /* FlowGraphBlockNames.ArrayIndex */, FlowGraphArrayIndexBlock); } /** * Re-exports pure implementation and applies runtime side effects. * Import flowGraphArrayIndexBlock.pure for tree-shakeable, side-effect-free usage. */ RegisterFlowGraphArrayIndexBlock(); export { FlowGraphArrayIndexBlock, RegisterFlowGraphArrayIndexBlock }; //# sourceMappingURL=flowGraphArrayIndexBlock-CYQWx-oB.esm.js.map