Page 1 of 1
Hiding the Left GUI
Posted: Sun Apr 21, 2019 11:17 pm
by RocketManChronicles
I cannot figure out how to hide the Left GUI (Mod Buttons) in the top left of the screen to allow me to see what the coordinates are for debugging purposes. Anyone know a Lua command or a key-binding to trigger these?
Re: Hiding the Left GUI
Posted: Sun Apr 21, 2019 11:20 pm
by orzelek
I'd like to be able to do that too.
Needed to drop bunch of mods from save I was investigating to figure out the coords.
Re: Hiding the Left GUI
Posted: Mon Apr 22, 2019 4:46 am
by eduran
Not tested, but this should do it for most buttons. Replace "top" with "left" for gui elements along the left side.
Code: Select all
/c for _,chd in pairs(game.player.gui.top.children) do chd.visible = false end --hide
/c for _,chd in pairs(game.player.gui.top.children) do chd.visible = true end -- unhide
This would be better placed in one of the help forums instead of general discussion.