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.
As of (at least) Unity 2018.2, using the Oculus Utilities, the following works:
I'll add that you can subscribe to
HMDMounted
andHMDUnmounted
events as well which is somewhat related:Those will fire when you put on (HMDMounted) and/or take off (HMDUnmounted) your headset.