TimerNode.d.ts 458 B

12345678910111213141516171819
  1. import { NodeFrame } from '../core/NodeFrame';
  2. import { FloatNode } from '../inputs/FloatNode';
  3. export class TimerNode extends FloatNode {
  4. constructor(scale?: number, scope?: string, timeScale?: boolean);
  5. scale: number;
  6. scope: string;
  7. timeScale: boolean;
  8. nodeType: string;
  9. getUnique(): boolean;
  10. updateFrame(frame: NodeFrame): void;
  11. copy(source: TimerNode): this;
  12. static GLOBAL: string;
  13. static LOCAL: string;
  14. static DELTA: string;
  15. }