How does one hide the HUD? So I can take clean screenshots and so forth. I Did a search and nothing came up.
Thanks,
Drexxus
How does one hide the HUD? So I can take clean screenshots and so forth. I Did a search and nothing came up.
Thanks,
Drexxus
Go into the game options and enable the minimal UI, then, while in a battle, adjust the UI options to hide all three parts of it.
Citizen under the patronage of Garb.
Ex Administrator, Senior Moderator, and Content Editor.
is there a way to quickly toggle it on and off for screenies and the like?
Well, you could add a few lines of code into your campaign_script![]()
Just copy the code and past it after "script".
Just press rol down to hide and again to unhide itCode:declare_counter ui_showing monitor_event ShortcutTriggered ShortcutTriggered object_manager hide_gui wait 0.1 if I_CompareCounter ui_showing = 0 hide_ui disable_movie_view set_counter ui_showing 2 end_if if I_CompareCounter ui_showing = 1 show_ui set_counter ui_showing 0 end_if if I_CompareCounter ui_showing = 2 set_counter ui_showing 1 end_if end_monitor monitor_event FactionTurnEnd FactionType slave hide_all_revealed_tiles end_monitor![]()