@enable3d/ammo-physics
Version:
Physics Plugin for three.js
24 lines • 491 B
TypeScript
/**
* @author yandeu
* @description Ported to TypeScript
*/
/**
* @author alteredq / http://alteredqualia.com/
*/
/**
* This is the Clock class THREE provides.
*/
declare class Clock {
autoStart: boolean;
startTime: number;
oldTime: number;
elapsedTime: number;
running: boolean;
constructor(autoStart?: boolean);
start(): void;
stop(): void;
getElapsedTime(): number;
getDelta(): number;
}
export { Clock };
//# sourceMappingURL=Clock.d.ts.map