Skip to content

Commit

Permalink
Merge pull request #19983 from fernandojsg/fixhand
Browse files Browse the repository at this point in the history
Fix bug when updating joints without requesting a hand in WebXR
  • Loading branch information
mrdoob committed Aug 1, 2020
2 parents b07f3df + 18a83b9 commit c1857a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderers/webxr/WebXRController.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ Object.assign( WebXRController.prototype, {

if ( inputSource ) {

if ( inputSource.hand ) {
if ( hand && inputSource.hand ) {

handPose = true;

Expand Down

0 comments on commit c1857a3

Please sign in to comment.