Jelajahi Sumber

Thumbs up gesture also requires thumb to be pointing up;

bjorn 6 bulan lalu
induk
melakukan
b72ef71f62
1 mengubah file dengan 1 tambahan dan 0 penghapusan
  1. 1 0
      examples/Interaction/Hand_Gestures/main.lua

+ 1 - 0
examples/Interaction/Hand_Gestures/main.lua

@@ -26,6 +26,7 @@ end
 local function isThumbsUp(skeleton)
   return skeleton and
     getCurl(skeleton, 'thumb') < .1 and
+    getJointDirection(skeleton, 6).y > .4 and
     getCurl(skeleton, 'index') > .6 and
     getCurl(skeleton, 'middle') > .6 and
     getCurl(skeleton, 'ring') > .6 and