mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 17:35:45 +02:00
fix warning about unused variable
This commit is contained in:
parent
2faaa5beef
commit
eec8affd84
1 changed files with 1 additions and 2 deletions
|
@ -103,9 +103,8 @@ void MyAvatar::update(float deltaTime) {
|
||||||
// Update head mouse from faceshift if active
|
// Update head mouse from faceshift if active
|
||||||
Faceshift* faceshift = Application::getInstance()->getFaceshift();
|
Faceshift* faceshift = Application::getInstance()->getFaceshift();
|
||||||
if (faceshift->isActive()) {
|
if (faceshift->isActive()) {
|
||||||
glm::vec3 headVelocity = faceshift->getHeadAngularVelocity();
|
|
||||||
|
|
||||||
// TODO? resurrect headMouse stuff?
|
// TODO? resurrect headMouse stuff?
|
||||||
|
//glm::vec3 headVelocity = faceshift->getHeadAngularVelocity();
|
||||||
//// sets how quickly head angular rotation moves the head mouse
|
//// sets how quickly head angular rotation moves the head mouse
|
||||||
//const float HEADMOUSE_FACESHIFT_YAW_SCALE = 40.f;
|
//const float HEADMOUSE_FACESHIFT_YAW_SCALE = 40.f;
|
||||||
//const float HEADMOUSE_FACESHIFT_PITCH_SCALE = 30.f;
|
//const float HEADMOUSE_FACESHIFT_PITCH_SCALE = 30.f;
|
||||||
|
|
Loading…
Reference in a new issue