mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-06-03 17:14:27 -04:00
Merge pull request #2416 from adroitwhiz/no-relativetime
Remove Timer.relativeTime
This commit is contained in:
commit
15cdd2f69a
2 changed files with 1 additions and 21 deletions
|
@ -8,7 +8,7 @@
|
||||||
* ... pass some time ...
|
* ... pass some time ...
|
||||||
* var timeDifference = timer.timeElapsed();
|
* var timeDifference = timer.timeElapsed();
|
||||||
* ---
|
* ---
|
||||||
* Or, you can use the `time` and `relativeTime`
|
* Or, you can use the `time` function
|
||||||
* to do some measurement yourself.
|
* to do some measurement yourself.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -68,17 +68,6 @@ class Timer {
|
||||||
return this.nowObj.now();
|
return this.nowObj.now();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a time accurate relative to other times produced by this function.
|
|
||||||
* If possible, will use sub-millisecond precision.
|
|
||||||
* If not, will use millisecond precision.
|
|
||||||
* Not guaranteed to produce the same absolute values per-system.
|
|
||||||
* @returns {number} ms-scale accurate time relative to other relative times.
|
|
||||||
*/
|
|
||||||
relativeTime () {
|
|
||||||
return this.nowObj.now();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Start a timer for measuring elapsed time,
|
* Start a timer for measuring elapsed time,
|
||||||
* at the most accurate precision possible.
|
* at the most accurate precision possible.
|
||||||
|
|
9
test/fixtures/mock-timer.js
vendored
9
test/fixtures/mock-timer.js
vendored
|
@ -78,15 +78,6 @@ class MockTimer {
|
||||||
return this._mockTime;
|
return this._mockTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a time accurate relative to other times produced by this function.
|
|
||||||
* @returns {number} ms-scale accurate time relative to other relative times.
|
|
||||||
* @memberof MockTimer
|
|
||||||
*/
|
|
||||||
relativeTime () {
|
|
||||||
return this._mockTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Start a timer for measuring elapsed time.
|
* Start a timer for measuring elapsed time.
|
||||||
* @memberof MockTimer
|
* @memberof MockTimer
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue