Fix my bug, introduced in PR#6012, in which startup position goto got

cancelled out.
This commit is contained in:
Howard Stearns 2015-10-12 15:40:16 -07:00
parent ae32b0dc98
commit 6cbeb6e7c3

View file

@ -152,7 +152,7 @@ void MyAvatar::reset() {
setEnableRigAnimations(true);
// Reset dynamic state.
_wasPushing = _isPushing = _isBraking = _billboardValid = _goToPending = _straighteningLean = false;
_wasPushing = _isPushing = _isBraking = _billboardValid = _straighteningLean = false;
_skeletonModel.reset();
getHead()->reset();
_targetVelocity = glm::vec3(0.0f);