diff --git a/src/hub.js b/src/hub.js index 51419d8d636cf18e1c4e292dade6146e156d0ff3..39cb6d97e42b26809be549c2d7262a9ebd489514 100644 --- a/src/hub.js +++ b/src/hub.js @@ -446,6 +446,8 @@ const onReady = async () => { getAvailableVREntryTypes().then(availableVREntryTypes => { if (availableVREntryTypes.gearvr === VR_DEVICE_AVAILABILITY.yes) { remountUI({ availableVREntryTypes, forcedVREntryType: "gearvr" }); + } else if (availableVREntryTypes.isInHMD) { + remountUI({ availableVREntryTypes, forcedVREntryType: "vr" }); } else { remountUI({ availableVREntryTypes }); }