@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.
42 lines (39 loc) • 1.63 kB
JavaScript
import { F as FlowGraphBlock } from './KHR_interactivity-Bmb38TjL.esm.js';
import { h as RichTypeBoolean, R as RichTypeAny } from './declarationMapper-rcGCdcDP.esm.js';
import { R as RegisterClass } from './index-FzOfPXLV.esm.js';
import './objectModelMapping-CJnQ6at_.esm.js';
/**
* Block that returns a value based on a condition.
*/
class FlowGraphConditionalDataBlock extends FlowGraphBlock {
/**
* Creates a new instance of the block
* @param config optional configuration for this block
*/
constructor(config) {
super(config);
this.condition = this.registerDataInput("condition", RichTypeBoolean);
this.onTrue = this.registerDataInput("onTrue", RichTypeAny);
this.onFalse = this.registerDataInput("onFalse", RichTypeAny);
this.output = this.registerDataOutput("output", RichTypeAny);
}
/**
* @internal
*/
_updateOutputs(context) {
// get the value of the condition
const condition = this.condition.getValue(context);
// set the value based on the condition truth-ness.
this.output.setValue(condition ? this.onTrue.getValue(context) : this.onFalse.getValue(context), context);
}
/**
* Gets the class name of this block
* @returns the class name
*/
getClassName() {
return "FlowGraphConditionalBlock" /* FlowGraphBlockNames.Conditional */;
}
}
RegisterClass("FlowGraphConditionalBlock" /* FlowGraphBlockNames.Conditional */, FlowGraphConditionalDataBlock);
export { FlowGraphConditionalDataBlock };
//# sourceMappingURL=flowGraphConditionalDataBlock-hK-3jf33.esm.js.map