04-10-2018 12:38 PM
Solved! Go to Solution.
08-28-2019 06:31 AM
08-28-2019 07:02 AM
if (OVRInput.Get(OVRInput.RawTouch.RIndexTrigger))Are you sure this condition is passed when you press your button ?
08-28-2019 09:45 PM
AGTDigital said:
if (OVRInput.Get(OVRInput.RawTouch.RIndexTrigger))Are you sure this condition is passed when you press your button ?
If not, you should check which controller is connected :
Debug.Log(OVRInput.GetConnectedControllers());
08-29-2019 02:25 AM
toShootLaserFromTargetPosition(/*cameraRig.rightHandAnchor.localPosition*/
ovrAvatar.HandRight.transform.position, Vector3.forward, laserMaxLength);
Hope this will help someone !ShootLaserFromTargetPosition(/*cameraRig.rightHandAnchor.localPosition*/
ovrAvatar.HandRight.transform.position, ovrAvatar.HandRight.transform.forward, laserMaxLength);
09-09-2019 09:02 AM