@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.
33 lines (30 loc) • 1.18 kB
JavaScript
import { u as RegisterClass } from './index-MZPybX0H.esm.js';
import { F as FlowGraphKeyboardEventBlock } from './flowGraphKeyboardEventBlock-BW_ut8-0.esm.js';
import './KHR_interactivity-CEwUaqxQ.esm.js';
import './declarationMapper-CqO08-WM.esm.js';
import './objectModelMapping-De5EKNEZ.esm.js';
import './spotLight.pure-CRdZC6Ci.esm.js';
/**
* A keyboard event block that fires when a key is released.
* Inherits all inputs/outputs from {@link FlowGraphKeyboardEventBlock}.
*/
class FlowGraphKeyUpEventBlock extends FlowGraphKeyboardEventBlock {
/**
* Creates a new FlowGraphKeyUpEventBlock.
* @param config optional configuration
*/
constructor(config) {
super(config);
/** @internal */
this.type = "KeyUp" /* FlowGraphEventType.KeyUp */;
}
/**
* @returns class name of the block.
*/
getClassName() {
return "FlowGraphKeyUpEventBlock" /* FlowGraphBlockNames.KeyUpEvent */;
}
}
RegisterClass("FlowGraphKeyUpEventBlock" /* FlowGraphBlockNames.KeyUpEvent */, FlowGraphKeyUpEventBlock);
export { FlowGraphKeyUpEventBlock };
//# sourceMappingURL=flowGraphKeyUpEventBlock-D6-F1uxf.esm.js.map