Hiding the Left GUI
-
- Filter Inserter
- Posts: 365
- Joined: Mon Aug 01, 2016 2:38 pm
- Contact:
Hiding the Left GUI
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
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.
Needed to drop bunch of mods from save I was investigating to figure out the coords.
Re: Hiding the Left GUI
Not tested, but this should do it for most buttons. Replace "top" with "left" for gui elements along the left side.
This would be better placed in one of the help forums instead of general discussion.
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