@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
22 lines (21 loc) • 896 B
TypeScript
/**
* sends a trigger when a video emits an event
*
*
*/
import { TypedJsNode } from './_Base';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
import { JsType } from '../../poly/registers/nodes/types/Js';
import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController';
declare class OnVideoEventJsParamsConfig extends NodeParamsConfig {
/** @param video node */
node: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.NODE_PATH>;
}
export declare class OnVideoEventJsNode extends TypedJsNode<OnVideoEventJsParamsConfig> {
readonly paramsConfig: OnVideoEventJsParamsConfig;
static type(): JsType.ON_VIDEO_EVENT;
isTriggering(): boolean;
initializeNode(): void;
setTriggeringLines(shadersCollectionController: JsLinesCollectionController, triggeredMethods: string): void;
}
export {};