mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 08:04:01 +02:00
fix indent in Avatar class
This commit is contained in:
parent
114f949a6e
commit
be37237b84
1 changed files with 1 additions and 1 deletions
|
@ -545,7 +545,7 @@ void Avatar::simulate(float deltaTime) {
|
|||
// Update audio trailing average for rendering facial animations
|
||||
const float AUDIO_AVERAGING_SECS = 0.05;
|
||||
_head.averageLoudness = (1.f - deltaTime / AUDIO_AVERAGING_SECS) * _head.averageLoudness +
|
||||
(deltaTime / AUDIO_AVERAGING_SECS) * _audioLoudness;
|
||||
(deltaTime / AUDIO_AVERAGING_SECS) * _audioLoudness;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue