mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 06:52:40 -05:00
Adding a comment.
This commit is contained in:
parent
eabff71461
commit
9ae2c4b1f1
1 changed files with 3 additions and 3 deletions
|
@ -437,21 +437,21 @@ class BoostMotor {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return {number} - time, in milliseconds, of when the pending timeout began.
|
* @return {number} - time, in milliseconds, of when the pending duration timeout began.
|
||||||
*/
|
*/
|
||||||
get pendingTimeoutStartTime () {
|
get pendingTimeoutStartTime () {
|
||||||
return this._pendingDurationTimeoutStartTime;
|
return this._pendingDurationTimeoutStartTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return {number} - delay, in milliseconds, of the pending timeout.
|
* @return {number} - delay, in milliseconds, of the pending duration timeout.
|
||||||
*/
|
*/
|
||||||
get pendingTimeoutDelay () {
|
get pendingTimeoutDelay () {
|
||||||
return this._pendingDurationTimeoutDelay;
|
return this._pendingDurationTimeoutDelay;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return {number} - delay, in milliseconds, of the pending timeout.
|
* @return {number} - delay, in milliseconds, of the pending duration timeout.
|
||||||
*/
|
*/
|
||||||
get pendingPositionDestination () {
|
get pendingPositionDestination () {
|
||||||
return this._pendingRotationDestination;
|
return this._pendingRotationDestination;
|
||||||
|
|
Loading…
Reference in a new issue