You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, it seems like the movement of the pan is inverted in the Hand Interaction Pan Zoom component. (move uv up and down when going left right with the hand)
I was able to get this fixed by changing line 373 of the script from :
Vector2 uvDelta = new Vector2(totalUVOffset.x, -totalUVOffset.y);
to
Vector2 uvDelta = new Vector2(-totalUVOffset.y, -totalUVOffset.x);
Will do some further testing to see if its related to MRTK or just MRTK Quest.
The text was updated successfully, but these errors were encountered:
ValemVR
changed the title
Han Interaction Pan Zoom not in good direction
Hand Interaction Pan Zoom not in good direction
Aug 31, 2020
@ValemVR I'm curious if this issue is still present for you in 1.2 - I regenerated the pan example prefab based on the one in the source hand interaction scene, and it seems fine on my end.
Hi, it seems like the movement of the pan is inverted in the Hand Interaction Pan Zoom component. (move uv up and down when going left right with the hand)
I was able to get this fixed by changing line 373 of the script from :
Vector2 uvDelta = new Vector2(totalUVOffset.x, -totalUVOffset.y);
to
Vector2 uvDelta = new Vector2(-totalUVOffset.y, -totalUVOffset.x);
Will do some further testing to see if its related to MRTK or just MRTK Quest.
The text was updated successfully, but these errors were encountered: