Fix input switching bug, where input would not be registered to GameMode, if game was booted in correct orientation

This commit is contained in:
Michal Pikulski
2025-10-07 08:32:32 +02:00
parent f20eae0f6e
commit 413576701e
4 changed files with 8 additions and 1 deletions

View File

@@ -71,6 +71,11 @@ namespace Utility
ShowPrompt();
orientationCheckCoroutine = StartCoroutine(OrientationCheckRoutine());
}
else
{
orientationCorrect = true;
OnOrientationCorrect?.Invoke();
}
}
private bool IsMainMenuScene(Scene scene)