Forum Discussion

🚨 This forum is archived and read-only. To submit a forum post, please visit our new Developer Forum. 🚨
Anonymous's avatar
Anonymous
5 years ago

Do teleport with hands only??

i tried to use ovr teleport scripts on Quest 2 by using only hands that shown as below...

but nothing happened 😕

 

any suggestions?

 

 

1 Reply

Replies have been turned off for this discussion
  • I wrote my own Teleport logic. You can try raycasting on pinch (and drawing that line/curve with line renderer) and then teleporting on pinch release to that raycast hit point.

                if (oVRHand.GetFingerIsPinching(OVRHand.HandFinger.Index))
                {
                    //Find Teleport Destination
                }
                else
                {
                    if (teleportDestinationFound)
                    {
                        //Teleport
                    }
                }