Increase prelevel stage text delay to 1s

This commit is contained in:
Denis-Cosmin Nutiu 2019-07-07 10:54:04 +03:00
parent e7f637aec3
commit 0425b806b7

View file

@ -55,7 +55,7 @@ namespace src.Managers
private IEnumerator PreInitGame()
{
_preStageUi.SetActive(true);
yield return new WaitForSeconds(0.7f);
yield return new WaitForSeconds(1f);
_preStageUi.SetActive(false);
}