Fixing typo and review comments

This commit is contained in:
samcake 2015-10-28 12:52:21 -07:00
parent b37a6f689a
commit bbc6d9f5e7

View file

@ -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<AvatarManager>()->getMyAvatar()->getHand();