Merge pull request #7035 from howard-stearns/fix-mouth-movement

fix-mouth-movement
This commit is contained in:
Brad Hefta-Gaub 2016-02-05 12:08:23 -08:00
commit f738f2b6f6

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);
}
}