Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: Stew on Thu 23/01/2014 14:12:57

Title: (SOLVED) Changing Winsetup options during run-time
Post by: Stew on Thu 23/01/2014 14:12:57
G'day,
I was wondering if it's possible to change Winsetup's options during run-time.
For example, is it possible to change language during run-time? Is it possible to start the game playing in-window-mode and then go full-screen during run-time?

Thank you. 
Title: Re: Changing Winsetup options during run-time
Post by: Crimson Wizard on Thu 23/01/2014 14:24:39
Language can be changed from script with "Game.ChangeTranslation", e.g.
Code (ags) Select

Game.ChangeTranslation("French");


Other options can't be changed.
Title: Re: (SOLVED) Changing Winsetup options during run-time
Post by: Stew on Thu 23/01/2014 15:22:25
Oh I see. So, only Translation file can be changed.
Thank you Crimson Wizard.