We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f86424 commit 1dfc7c1Copy full SHA for 1dfc7c1
Assets.Scripts.UI/MainUIController.cs
@@ -499,6 +499,12 @@ public void TryRedrawTextWindowBackground(string windowFilterTextureName)
499
{
500
MainUIController ui = GameSystem.Instance.MainUIController;
501
502
+ // Prevent text window background appearing on top of the title screen in Rei
503
+ if(GameSystem.Instance.GameState == GameState.TitleScreen)
504
+ {
505
+ return;
506
+ }
507
+
508
// If this function is called from the main menu, the bgLayers might be null
509
if (ui.bgLayer == null || ui.bgLayer2 == null)
510
0 commit comments