Death Screen
Death Screen
Hi again, I'm following this thread: https://www.pixelcrushers.com/phpbb/vie ... f=3&t=2995 for the death screen, but after dying, I can still trigger the menu system using the esc/cancel button. Is there a way to not trigger it? My current setup is Menu System at Main Menu Scene and Death Screen at Practice Area Scene. Or is there a better way to set this up?
Re: Death Screen
Hi,
When the death screen comes up, you could disable the Menu System's Pause component. For example:
When you close the death screen, re-enable the Pause menu:
When the death screen comes up, you could disable the Menu System's Pause component. For example:
Code: Select all
FindObjectOfType<Pause>().enabled = false;
Code: Select all
FindObjectOfType<Pause>().enabled = true;