Fix to add local variable underscores to head get/add body yaw functions.

This commit is contained in:
Philip Rosedale 2013-04-16 20:29:10 -07:00
parent 1aac3eb0df
commit 39bb556cd3

View file

@ -124,8 +124,8 @@ class Head : public AvatarData {
float getYaw() {return Yaw;}
float getLastMeasuredYaw() {return YawRate;}
float getBodyYaw() {return bodyYaw;};
void addBodyYaw(float y) {bodyYaw += y;};
float getBodyYaw() {return _bodyYaw;};
void addBodyYaw(float y) {_bodyYaw += y;};
glm::vec3 getHeadLookatDirection();
glm::vec3 getHeadLookatDirectionUp();