mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 14:33:31 +02:00
Fix to add local variable underscores to head get/add body yaw functions.
This commit is contained in:
parent
1aac3eb0df
commit
39bb556cd3
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue