mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 04:44:11 +02:00
Fix typo
This commit is contained in:
parent
a01d118c57
commit
f5b12a0a9d
1 changed files with 1 additions and 1 deletions
|
@ -318,7 +318,7 @@ public slots:
|
|||
* @example <caption>Animate between one rotation and another.</caption>
|
||||
* var dt = amountOfTimeThatHasPassed;
|
||||
* var mixFactor = amountOfTimeThatHasPassed / TIME_TO_COMPLETE;
|
||||
* if (mixFactor) > 1) {
|
||||
* if (mixFactor > 1) {
|
||||
* mixFactor = 1;
|
||||
* }
|
||||
* var newRotation = Quat.mix(startRotation, endRotation, mixFactor);
|
||||
|
|
Loading…
Reference in a new issue