Detecting Oculus HMD in Unity

6.5k Views Asked by At
public Transform OculusPlayerPrefab;
public Transform DefaultPlayerPrefab;
void Start() {
    Transform player = OVRDevice.IsHMDPresent() ?
        (Transform)Instantiate(OculusPlayerPrefab) :
        (Transform)Instantiate(DefaultPlayerPrefab);
    player.position = transform.position;
}

This should detect if the oculus rift HMD is connected and instantiate the oculus player prefab, otherwise the default. However, IsHMDPresent() returns false whether the Oculus Rift is connected or not. In the unity/oculus integration package however, OVRMainMenu uses the IsHMDPresent() method with the expected results.

3

There are 3 best solutions below

0
On BEST ANSWER

As of (at least) Unity 2018.2, using the Oculus Utilities, the following works:

if (OVRManager.isHMDPresent) {
    // headset connected
}

I'll add that you can subscribe to HMDMounted and HMDUnmounted events as well which is somewhat related:

OVRManager.HMDMounted   += MyOnHMDMountedFunction();
OVRManager.HMDUnmounted += MyOnHMDUnmountedFunction();

Those will fire when you put on (HMDMounted) and/or take off (HMDUnmounted) your headset.

6
On

Edit: this answer is from 2014 and based on Unity 4. You probably want to use the other answers.

I found this method to be working best:

Ovr.Hmd.Detect() > 0

Also remember of the the HMDLost/HMDAcquired events, so you don't have to poll this every frame:

bool oculusPresent=false;
void CheckOculusPresence() {
  oculusPresent=Ovr.Hmd.Detect() > 0;
}

void Start() {
  CheckOculusPresence();
  OVRManager.HMDAcquired+=CheckOculusPresence;
  OVRManager.HMDLost+=CheckOculusPresence;
}

(oculus SDK 0.4.3/unity3d 4.5.5, OSX/Windows)

1
On