mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-03 14:59:23 +00:00
[DesktopVRSwitch] Prevent SteamVR_Behaviour from closing game.
Was going to use my own event and switch before quit, but SteamVR_Behaviour was the one doing it the entire time. Very convenient for me.
This commit is contained in:
parent
52d4ef3279
commit
337134d2b5
3 changed files with 34 additions and 7 deletions
|
@ -5,25 +5,29 @@ namespace NAK.DesktopVRSwitch;
|
|||
|
||||
class VRModeSwitchDebugger : MonoBehaviour
|
||||
{
|
||||
private Coroutine _switchCoroutine;
|
||||
private WaitForSeconds _sleep = new WaitForSeconds(2.5f);
|
||||
Coroutine _switchCoroutine;
|
||||
WaitForSeconds _sleep;
|
||||
|
||||
private void OnEnable()
|
||||
void OnEnable()
|
||||
{
|
||||
if (_switchCoroutine == null)
|
||||
{
|
||||
_switchCoroutine = StartCoroutine(SwitchLoop());
|
||||
_sleep = new WaitForSeconds(2f);
|
||||
}
|
||||
}
|
||||
|
||||
private void OnDisable()
|
||||
void OnDisable()
|
||||
{
|
||||
if (_switchCoroutine != null)
|
||||
{
|
||||
StopCoroutine(_switchCoroutine);
|
||||
_switchCoroutine = null;
|
||||
_sleep = null;
|
||||
}
|
||||
}
|
||||
|
||||
private IEnumerator SwitchLoop()
|
||||
IEnumerator SwitchLoop()
|
||||
{
|
||||
while (true)
|
||||
{
|
||||
|
@ -32,7 +36,6 @@ class VRModeSwitchDebugger : MonoBehaviour
|
|||
VRModeSwitchManager.Instance.AttemptSwitch();
|
||||
yield return _sleep;
|
||||
}
|
||||
|
||||
yield return null;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue