From b46bd1fd4126fbb5255cc0f178eb9ea70f1c9a8c Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Fri, 30 Aug 2013 10:28:30 -0700 Subject: [PATCH] display the Avatar's hand in first person --- interface/src/avatar/MyAvatar.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/interface/src/avatar/MyAvatar.cpp b/interface/src/avatar/MyAvatar.cpp index 0a811e2d48..34f4d5caa4 100644 --- a/interface/src/avatar/MyAvatar.cpp +++ b/interface/src/avatar/MyAvatar.cpp @@ -514,7 +514,9 @@ float MyAvatar::getBallRenderAlpha(int ball, bool lookingInMirror) const { void MyAvatar::renderBody(bool lookingInMirror, bool renderAvatarBalls) { if (Application::getInstance()->getCamera()->getMode() == CAMERA_MODE_FIRST_PERSON) { - // Dont display body + // Dont display body, only the hand + _hand.render(lookingInMirror); + return; }