mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 18:44:00 +02:00
fix incorrect ordering of member variables in Head
This commit is contained in:
parent
391d6dca8e
commit
c504e8aa1a
1 changed files with 4 additions and 4 deletions
|
@ -58,13 +58,13 @@ Head::Head() :
|
|||
_scale(1.0f),
|
||||
_eyeContact(1),
|
||||
_browAudioLift(0.0f),
|
||||
_eyeContactTarget(LEFT_EYE),
|
||||
_bodyYaw(0.0f),
|
||||
_gravity(0.0f, -1.0f, 0.0f),
|
||||
_lastLoudness(0.0f),
|
||||
_averageLoudness(0.0f),
|
||||
_audioAttack(0.0f),
|
||||
_gravity(0.0f, -1.0f, 0.0f),
|
||||
_returnSpringScale(1.0f)
|
||||
_returnSpringScale(1.0f),
|
||||
_bodyYaw(0.0f),
|
||||
_eyeContactTarget(LEFT_EYE)
|
||||
{
|
||||
_eyebrowPitch[0] = -30;
|
||||
_eyebrowPitch[1] = -30;
|
||||
|
|
Loading…
Reference in a new issue