Fix inverted boolean that was preventing other people's avatars from mouth-animating.

This commit is contained in:
Howard Stearns 2016-02-05 11:47:21 -08:00
parent 725f9e29a3
commit 47694b90ee

View file

@ -214,7 +214,7 @@ void Avatar::simulate(float deltaTime) {
Head* head = getHead();
head->setPosition(headPosition);
head->setScale(getUniformScale());
head->simulate(deltaTime, false, _shouldAnimate);
head->simulate(deltaTime, false, !_shouldAnimate);
}
}