08-08-2021 08:23 AM
i tried to use ovr teleport scripts on Quest 2 by using only hands that shown as below...
but nothing happened 😕
any suggestions?
12-01-2021 12:14 AM
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
}
}