@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
32 lines (31 loc) • 1.87 kB
TypeScript
/**
* sends a trigger when the viewer taps or clicks on an object
*
*
*/
import { JsType } from '../../poly/registers/nodes/types/Js';
import { EvaluatorEventData } from './code/assemblers/actor/ActorEvaluator';
import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController';
import { CPUOnObjectPointerEventJsParamsConfig, ExtendableOnObjectPointerEventJsNode } from './_BaseOnObjectPointerEvent';
declare const OnObjectPointerupJsParamsConfig_base: {
new (...args: any[]): {
buttonLeft: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.BOOLEAN>;
buttonMiddle: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.BOOLEAN>;
buttonRight: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.BOOLEAN>;
ctrl: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.INTEGER>;
shift: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.INTEGER>;
alt: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.INTEGER>;
};
} & typeof CPUOnObjectPointerEventJsParamsConfig;
export declare class OnObjectPointerupJsParamsConfig extends OnObjectPointerupJsParamsConfig_base {
}
export declare class OnObjectPointerupJsNode extends ExtendableOnObjectPointerEventJsNode<OnObjectPointerupJsParamsConfig> {
readonly paramsConfig: OnObjectPointerupJsParamsConfig;
static type(): JsType;
eventData(): EvaluatorEventData | undefined;
initializeNode(): void;
setLines(linesController: JsLinesCollectionController): void;
setTriggeringLines(linesController: JsLinesCollectionController, triggeredMethods: string): void;
private _addIntersectionRef;
}
export {};