mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-03 23:09:22 +00:00
[DesktopVRSwitch] Further cleanup
This commit is contained in:
parent
6774c3ff6d
commit
f89a41772b
5 changed files with 14 additions and 23 deletions
|
@ -44,10 +44,9 @@ public class VRModeSwitchManager : MonoBehaviour
|
||||||
}
|
}
|
||||||
|
|
||||||
// Settings
|
// Settings
|
||||||
public bool _useWorldTransition = true;
|
public bool UseWorldTransition = true;
|
||||||
public bool _reloadLocalAvatar = true;
|
public bool ReloadLocalAvatar = true;
|
||||||
|
|
||||||
// Info
|
|
||||||
public bool SwitchInProgress { get; private set; }
|
public bool SwitchInProgress { get; private set; }
|
||||||
|
|
||||||
void Awake()
|
void Awake()
|
||||||
|
@ -75,7 +74,7 @@ public class VRModeSwitchManager : MonoBehaviour
|
||||||
yield return null;
|
yield return null;
|
||||||
|
|
||||||
|
|
||||||
if (_useWorldTransition)
|
if (UseWorldTransition)
|
||||||
{ // start visual transition and wait for it to complete
|
{ // start visual transition and wait for it to complete
|
||||||
WorldTransitionSystem.Instance.StartTransition();
|
WorldTransitionSystem.Instance.StartTransition();
|
||||||
yield return new WaitForSeconds(WorldTransitionSystem.Instance.CurrentInLength);
|
yield return new WaitForSeconds(WorldTransitionSystem.Instance.CurrentInLength);
|
||||||
|
@ -100,7 +99,7 @@ public class VRModeSwitchManager : MonoBehaviour
|
||||||
if (isUsingVr != IsInVR())
|
if (isUsingVr != IsInVR())
|
||||||
{
|
{
|
||||||
// reload the local avatar
|
// reload the local avatar
|
||||||
if (_reloadLocalAvatar)
|
if (ReloadLocalAvatar)
|
||||||
{
|
{
|
||||||
Utils.ClearLocalAvatar();
|
Utils.ClearLocalAvatar();
|
||||||
Utils.ReloadLocalAvatar();
|
Utils.ReloadLocalAvatar();
|
||||||
|
@ -113,9 +112,9 @@ public class VRModeSwitchManager : MonoBehaviour
|
||||||
InvokeOnFailedSwitch(!isUsingVr);
|
InvokeOnFailedSwitch(!isUsingVr);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_useWorldTransition)
|
if (UseWorldTransition)
|
||||||
{ // would be cool to have out length
|
{ // would be cool to have out length
|
||||||
WorldTransitionSystem.Instance.ContinueTransitionCoroutine();
|
WorldTransitionSystem.Instance.ContinueTransition();
|
||||||
yield return new WaitForSeconds(WorldTransitionSystem.Instance.CurrentInLength);
|
yield return new WaitForSeconds(WorldTransitionSystem.Instance.CurrentInLength);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -16,14 +16,6 @@ public class CheckVRTracker : VRModeTracker
|
||||||
|
|
||||||
private void OnPostSwitch(bool intoVR)
|
private void OnPostSwitch(bool intoVR)
|
||||||
{
|
{
|
||||||
CheckVR _checkVR = CheckVR.Instance;
|
CheckVR.Instance.hasVrDeviceLoaded = intoVR;
|
||||||
if (_checkVR == null)
|
|
||||||
{
|
|
||||||
DesktopVRSwitch.Logger.Error("Error while getting CheckVR!");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
DesktopVRSwitch.Logger.Msg($"Setting CheckVR hasVrDeviceLoaded to {intoVR}.");
|
|
||||||
|
|
||||||
_checkVR.hasVrDeviceLoaded = intoVR;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue