Alright, so basically what happened is that the buttons in my game will automatically be disabled after restarting the game. It works well before the restart.
Here's option panel I create. This panel did not come out after the game restarts.
Main Menu & Quest Machine
Re: Main Menu & Quest Machine
- Attachments
-
- Capture01.JPG (120.2 KiB) Viewed 1231 times
Re: Main Menu & Quest Machine
I'm sorry; I still don't understand. Can you send a reproduction project to tony (at) pixelcrushers.com? Please include the steps I should follow to reproduce the problem.
Re: Main Menu & Quest Machine
I have emailed you my project. Please check if you receive it. Thanks a lot.
Re: Main Menu & Quest Machine
Thank you for sending the project. In PauseMenu.cs, update GameIsPaused. For example, in Retry():
Code: Select all
public void Retry()
{
GameIsPaused = false; // <-- ADD THIS LINE.
Time.timeScale = 1;
...
Re: Main Menu & Quest Machine
Yeah! Problem is solved! Thank you so much for the fast response!!
Re: Main Menu & Quest Machine
You're welcome! Glad to help.