funny bug

This commit is contained in:
JohnCorby 2022-04-05 19:05:09 -07:00
parent b732ed9128
commit dac3fc6283

View File

@ -56,13 +56,15 @@ internal class MenuManager : MonoBehaviour, IAddComponentOnStart
{
if (isUniverse)
{
InitPauseMenus();
// wait a frame or else the changes won't actually happen
Delay.RunNextFrame(InitPauseMenus);
return;
}
if (newScene == OWScene.TitleScreen)
{
MakeTitleMenus();
// wait a frame or else the changes won't actually happen
Delay.RunNextFrame(MakeTitleMenus);
}
}