1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 02:39:46 +02:00
Oinktube/node_modules/three/examples/jsm/nodes/utils/TimerNode.d.ts
2023-12-11 11:59:56 -03:00

21 lines
455 B
TypeScript

import { NodeFrame } from '../core/NodeFrame';
import { FloatNode } from '../inputs/FloatNode';
export class TimerNode extends FloatNode {
constructor( scale?: number, scope?: string, timeScale?: boolean );
scale: number;
scope: string;
timeScale: boolean;
nodeType: string;
getUnique(): boolean;
updateFrame( frame: NodeFrame ): void;
copy( source: TimerNode ): this;
static GLOBAL: string;
static LOCAL: string;
static DELTA: string;
}