Skip to content

Commit

Permalink
Never show intro in non-XR modes
Browse files Browse the repository at this point in the history
  • Loading branch information
andybak committed Mar 29, 2024
1 parent cd5e067 commit 6552732
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Assets/Scripts/App.cs
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,11 @@ void Update()
{
OnIntroComplete();
}
else if (!VrSdk.IsHmdInitialized() || Config.IsExperimental)
// Note that PR620 will clean this logic up slightly
else if (!VrSdk.IsHmdInitialized() ||
Config.IsExperimental ||
UserConfig.Flags.DisableXrMode ||
UserConfig.Flags.EnableMonoscopicMode)
{
OnIntroComplete();
PanelManager.m_Instance.ReviveFloatingPanelsForStartup();
Expand Down

0 comments on commit 6552732

Please sign in to comment.