Need to initialize this to false.

This commit is contained in:
Andrzej Kapolka 2014-05-20 17:55:48 -07:00
parent 09af6778aa
commit f709ea61b5

View file

@ -118,6 +118,7 @@ QVector<Model::JointState> Model::createJointStates(const FBXGeometry& geometry)
JointState state; JointState state;
state.translation = joint.translation; state.translation = joint.translation;
state.rotation = joint.rotation; state.rotation = joint.rotation;
state.animationDisabled = false;
jointStates.append(state); jointStates.append(state);
} }