Object for keeping track of time. This uses performance.now if it is available, otherwise it reverts to the less accurate Date.now.
autoStart — (optional) whether to automatically start the clock. Default is true.
If set, starts the clock automatically when the first update is called. Default is true.
Holds the time at which the clock's start method was last called.
Holds the time at which the clock's start, getElapsedTime or getDelta methods were last called.
Keeps track of the total time that the clock has been running.
Whether the clock is running or not.
Starts clock. Also sets the startTime and oldTime to the current time, sets elapsedTime to 0 and running to true.
Stops clock and sets oldTime to the current time.
Get the seconds passed since the clock started and sets oldTime to the current time.
If autoStart is true and the clock is not running, also starts the clock.
Get the seconds passed since the time oldTime was set and sets oldTime to the current time.
If autoStart is true and the clock is not running, also starts the clock.
For more info on how to obtain the source code of this module see this page.