cancel
Showing results for 
Search instead for 
Did you mean: 

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?

 

Capture.PNG

 
1 REPLY 1

spectrexr
Explorer

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
                }
            }