Local avatar index finger doesn't move

Hello i am new to VR projects. I am using LocalAvatar prefab. It generates hands and controllers. My problem is index finger doesn’t move when i touch trigger. It always stay like in the picture below. Thumb moves when i touch buttons but index finger doesn’t move. If you know why this is not working or how i can access to animatons of index finger so i can manually activate it, it would be great. Thank you in advance.

In OvrAvatarLocalDriver.cs GetControllerPose method, change this line

if (!OVRInput.Get(OVRInput.NearTouch.PrimaryIndexTrigger, controller)) touches |= ovrAvatarTouch.Pointing;

to this

else touches |= ovrAvatarTouch.Pointing;
2 Likes