Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: Pollux on Sun 07/07/2019 08:17:07

Title: Is possible to make GUI inactive?
Post by: Pollux on Sun 07/07/2019 08:17:07
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!
Title: Re: Is possible to make GUI inactive?
Post by: Crimson Wizard on Sun 07/07/2019 09:20:28
gMainMenu.Clickable = false
Title: Re: Is possible to make GUI inactive?
Post by: Pollux on Sun 07/07/2019 09:33:59
Quote from: Crimson Wizard on Sun 07/07/2019 09:20:28
gMainMenu.Clickable = false

Oh, that's so simple?

Great! Thank you!