From bbc6d9f5e7709427d1ab37b9ac4b9124dcc03a34 Mon Sep 17 00:00:00 2001 From: samcake Date: Wed, 28 Oct 2015 12:52:21 -0700 Subject: [PATCH] Fixing typo and review comments --- interface/src/Application.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 0ccb9de28a..2c79d5a288 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -2755,10 +2755,6 @@ void Application::update(float deltaTime) { myAvatar->setDriveKeys(ZOOM, userInputMapper->getActionState(controller::Action::TRANSLATE_CAMERA_Z)); } - float lhc = userInputMapper->getActionState(controller::Action::LEFT_HAND_CLICK); - if (lhc != 0.0f) { - std::cout << "Left Hand click = " << lhc << std::endl; - } controller::Pose leftHand = userInputMapper->getPoseState(controller::Action::LEFT_HAND); controller::Pose rightHand = userInputMapper->getPoseState(controller::Action::RIGHT_HAND); Hand* hand = DependencyManager::get()->getMyAvatar()->getHand();