@babylonjs/core
Version:
Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.
20 lines (19 loc) • 743 B
TypeScript
import { FlowGraphEventType } from "../../flowGraphEventType.js";
import { FlowGraphKeyboardEventBlock, type IFlowGraphKeyboardEventBlockConfiguration } from "./flowGraphKeyboardEventBlock.js";
/**
* A keyboard event block that fires when a key is released.
* Inherits all inputs/outputs from {@link FlowGraphKeyboardEventBlock}.
*/
export declare class FlowGraphKeyUpEventBlock extends FlowGraphKeyboardEventBlock {
/** @internal */
readonly type: FlowGraphEventType;
/**
* Creates a new FlowGraphKeyUpEventBlock.
* @param config optional configuration
*/
constructor(config?: IFlowGraphKeyboardEventBlockConfiguration);
/**
* @returns class name of the block.
*/
getClassName(): string;
}