Just another question.
Is it possible to make GUI inactive, like... You hit "Settings" in menu and it shows settings GUI dialogue, but in meanwhile you can't do anything in the main menu?
Of course - the solution is make Main Menu GUI hidden with
gMainMenu.Visible = false;
but is there a posibility to make it inactive, not hidden, while another GUI is opened?
Thank you!
gMainMenu.Clickable = false
Quote from: Crimson Wizard on Sun 07/07/2019 09:20:28
gMainMenu.Clickable = false
Oh, that's so simple?
Great! Thank you!