Question by
Speonight · Apr 30, 2018 at 05:14 AM ·
inputoculus rift
oculus rift input problem doesnt print 1 i have the latest version of oculus utilities i got the ovrInput and its suppose to work but it doesn't work someone got an idea what is the problem?
using System.Collections; using System.Collections.Generic; using UnityEngine;
public class Controller : MonoBehaviour {
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
if (OVRInput.Get(OVRInput.Button.One))
{
Debug.Log("Hi");
}
}
}
Comment
Your answer

Follow this Question
Related Questions
Oculus joystick input 0 Answers
How to translate InputTracking.GetLocalRotation into WorldSpace? 2 Answers
Unity Input and Oculus Rift with Touch Controllers in Unity 2018.3.7f1 1 Answer
Help me doing teleportation with oculus touch 1 Answer
(XR Input) Why does Oculus Rift work fine, but HTC Vive inputs stays at 0 ? 0 Answers