mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 21:22:07 +02:00
Disabled Oculus plugin in additional place
This commit is contained in:
parent
85a9987af5
commit
241fe61373
1 changed files with 5 additions and 0 deletions
|
@ -7,6 +7,7 @@
|
|||
//
|
||||
|
||||
#include "OculusHelpers.h"
|
||||
#include "plugins/PluginManager.h"
|
||||
|
||||
#include <atomic>
|
||||
|
||||
|
@ -41,6 +42,10 @@ bool ovr::available() {
|
|||
return;
|
||||
}
|
||||
|
||||
if (!PluginManager::getInstance()->getEnableOculusPluginSetting()) {
|
||||
return;
|
||||
}
|
||||
|
||||
ovrDetectResult detect = ovr_Detect(0);
|
||||
if (!detect.IsOculusServiceRunning || !detect.IsOculusHMDConnected) {
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue