UNPKG

@polygonjs/polygonjs

Version:

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

32 lines (31 loc) 1.57 kB
/** * sends a trigger when an object is clicked * * */ import { JsType } from '../../poly/registers/nodes/types/Js'; import { EvaluatorEventData } from './code/assemblers/actor/ActorEvaluator'; import { ExtendableOnObjectPointerEventJsNode, CPUOnObjectPointerEventJsParamsConfig } from './_BaseOnObjectPointerEvent'; import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController'; declare const OnObjectDoubleClickJsParamsConfig_base: { new (...args: any[]): { 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>; }; } & { new (...args: any[]): {}; } & typeof CPUOnObjectPointerEventJsParamsConfig; export declare class OnObjectDoubleClickJsParamsConfig extends OnObjectDoubleClickJsParamsConfig_base { } export declare class OnObjectDoubleClickJsNode extends ExtendableOnObjectPointerEventJsNode<OnObjectDoubleClickJsParamsConfig> { readonly paramsConfig: OnObjectDoubleClickJsParamsConfig; static type(): JsType; isTriggering(): boolean; eventData(): EvaluatorEventData[] | undefined; initializeNode(): void; setLines(linesController: JsLinesCollectionController): void; setTriggeringLines(linesController: JsLinesCollectionController, triggeredMethods: string): void; private _addIntersectionRef; } export {};