UNPKG

polygonjs-engine

Version:

node-based webgl 3D engine https://polygonjs.com

45 lines (44 loc) 3.39 kB
import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { TypedInputEventNode } from './_BaseInput'; declare class MouseEventParamsConfig extends NodeParamsConfig { /** @param toggle on to allow any event to be listened to */ active: import("../utils/params/ParamsConfig").ParamTemplate<import("../../poly/ParamType").ParamType.BOOLEAN>; sep: import("../utils/params/ParamsConfig").ParamTemplate<import("../../poly/ParamType").ParamType.SEPARATOR>; /** @param toggle on to listen to auxclick events */ auxclick: import("../utils/params/ParamsConfig").ParamTemplate<import("../../poly/ParamType").ParamType.BOOLEAN>; /** @param toggle on to listen to click events */ click: import("../utils/params/ParamsConfig").ParamTemplate<import("../../poly/ParamType").ParamType.BOOLEAN>; /** @param toggle on to listen to contextmenu events */ contextmenu: import("../utils/params/ParamsConfig").ParamTemplate<import("../../poly/ParamType").ParamType.BOOLEAN>; /** @param toggle on to listen to dblclick events */ dblclick: import("../utils/params/ParamsConfig").ParamTemplate<import("../../poly/ParamType").ParamType.BOOLEAN>; /** @param toggle on to listen to mousedown events */ mousedown: import("../utils/params/ParamsConfig").ParamTemplate<import("../../poly/ParamType").ParamType.BOOLEAN>; /** @param toggle on to listen to mouseenter events */ mouseenter: import("../utils/params/ParamsConfig").ParamTemplate<import("../../poly/ParamType").ParamType.BOOLEAN>; /** @param toggle on to listen to mouseleave events */ mouseleave: import("../utils/params/ParamsConfig").ParamTemplate<import("../../poly/ParamType").ParamType.BOOLEAN>; /** @param toggle on to listen to mousemove events */ mousemove: import("../utils/params/ParamsConfig").ParamTemplate<import("../../poly/ParamType").ParamType.BOOLEAN>; /** @param toggle on to listen to mouseover events */ mouseover: import("../utils/params/ParamsConfig").ParamTemplate<import("../../poly/ParamType").ParamType.BOOLEAN>; /** @param toggle on to listen to mouseout events */ mouseout: import("../utils/params/ParamsConfig").ParamTemplate<import("../../poly/ParamType").ParamType.BOOLEAN>; /** @param toggle on to listen to mouseup events */ mouseup: import("../utils/params/ParamsConfig").ParamTemplate<import("../../poly/ParamType").ParamType.BOOLEAN>; /** @param toggle on to listen to pointerlockchange events */ pointerlockchange: import("../utils/params/ParamsConfig").ParamTemplate<import("../../poly/ParamType").ParamType.BOOLEAN>; /** @param toggle on to listen to pointerlockerror events */ pointerlockerror: import("../utils/params/ParamsConfig").ParamTemplate<import("../../poly/ParamType").ParamType.BOOLEAN>; /** @param toggle on to listen to select events */ select: import("../utils/params/ParamsConfig").ParamTemplate<import("../../poly/ParamType").ParamType.BOOLEAN>; /** @param toggle on to listen to wheel events */ wheel: import("../utils/params/ParamsConfig").ParamTemplate<import("../../poly/ParamType").ParamType.BOOLEAN>; } export declare class MouseEventNode extends TypedInputEventNode<MouseEventParamsConfig> { params_config: MouseEventParamsConfig; static type(): string; protected accepted_event_types(): string[]; initializeNode(): void; } export {};