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.

43 lines (40 loc) 1.56 kB
import { F as FlowGraphBlock, l as defaultValueSerializationFunction } from './KHR_interactivity-Bmb38TjL.esm.js'; import { o as getRichTypeFromValue } from './declarationMapper-rcGCdcDP.esm.js'; import { R as RegisterClass } from './index-FzOfPXLV.esm.js'; import './objectModelMapping-CJnQ6at_.esm.js'; /** * Block that returns a constant value. */ class FlowGraphConstantBlock extends FlowGraphBlock { constructor( /** * the configuration of the block */ config) { super(config); this.config = config; this.output = this.registerDataOutput("output", getRichTypeFromValue(config.value)); } _updateOutputs(context) { this.output.setValue(this.config.value, context); } /** * Gets the class name of this block * @returns the class name */ getClassName() { return "FlowGraphConstantBlock" /* FlowGraphBlockNames.Constant */; } /** * Serializes this block * @param serializationObject the object to serialize to * @param valueSerializeFunction the function to use to serialize the value */ serialize(serializationObject = {}, valueSerializeFunction = defaultValueSerializationFunction) { super.serialize(serializationObject); valueSerializeFunction("value", this.config.value, serializationObject.config); } } RegisterClass("FlowGraphConstantBlock" /* FlowGraphBlockNames.Constant */, FlowGraphConstantBlock); export { FlowGraphConstantBlock }; //# sourceMappingURL=flowGraphConstantBlock-BifOiytx.esm.js.map