UNPKG

polygonjs-engine

Version:

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

20 lines (19 loc) 615 B
/** * Adds a delay to trigger received events * * * */ import { TypedEventNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class TimerEventParamsConfig extends NodeParamsConfig { /** @param delay before dispatching */ delay: import("../utils/params/ParamsConfig").ParamTemplate<import("../../poly/ParamType").ParamType.INTEGER>; } export declare class DelayEventNode extends TypedEventNode<TimerEventParamsConfig> { params_config: TimerEventParamsConfig; static type(): string; initializeNode(): void; private _process_input; } export {};