UNPKG

@polygonjs/polygonjs

Version:

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

22 lines (21 loc) 817 B
/** * Simple delay * * @remarks * This node outputs the exact same geometry as its input, but does so with a delay. This can be useful when some operations are not meant to run immediately. * */ import { TypedSopNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { CoreGroup } from '../../../core/geometry/Group'; declare class DelaySopParamsConfig extends NodeParamsConfig { /** @param duration in milliseconds */ duration: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.INTEGER>; } export declare class DelaySopNode extends TypedSopNode<DelaySopParamsConfig> { paramsConfig: DelaySopParamsConfig; static type(): string; initializeNode(): void; cook(inputs_contents: CoreGroup[]): void; } export {};