@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.
40 lines (37 loc) • 1.71 kB
JavaScript
import { F as FlowGraphBlock } from './KHR_interactivity-Bmb38TjL.esm.js';
import { s as RichTypeString, R as RichTypeAny } from './declarationMapper-rcGCdcDP.esm.js';
import { R as RegisterClass } from './index-FzOfPXLV.esm.js';
import './objectModelMapping-CJnQ6at_.esm.js';
/**
* A flow graph block that takes a function name, an object and an optional context as inputs and calls the function on the object.
*/
class FlowGraphFunctionReferenceBlock extends FlowGraphBlock {
constructor(
/**
* the configuration of the block
*/
config) {
super(config);
this.functionName = this.registerDataInput("functionName", RichTypeString);
this.object = this.registerDataInput("object", RichTypeAny);
this.context = this.registerDataInput("context", RichTypeAny, null);
this.output = this.registerDataOutput("output", RichTypeAny);
}
_updateOutputs(context) {
const functionName = this.functionName.getValue(context);
const object = this.object.getValue(context);
const contextValue = this.context.getValue(context);
if (object && functionName) {
const func = object[functionName];
if (func && typeof func === "function") {
this.output.setValue(func.bind(contextValue), context);
}
}
}
getClassName() {
return "FlowGraphFunctionReference" /* FlowGraphBlockNames.FunctionReference */;
}
}
RegisterClass("FlowGraphFunctionReference" /* FlowGraphBlockNames.FunctionReference */, FlowGraphFunctionReferenceBlock);
export { FlowGraphFunctionReferenceBlock };
//# sourceMappingURL=flowGraphFunctionReferenceBlock-D06cwf0b.esm.js.map