This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
Hey I'm trying to clean up the UI by removing everything except for
1) the Info Panel that shows your selected units/stats
2) the resources
3) the game menu
I'd also like like to make the info panel smaller, change it to a square and move it to the side
I'd also like to make the resources slightly bigger and move them as well
https://100001.onl/
What's the easiest way to get this done? I've been having trouble finding a solution that doesn't require an entire UI rework.
Hello,
The easiest way is to create a new layout that overrides the GameUI. Then you hide elements you want from the container your want.
Example (bad one, since i hide the menu bar, welp) :
<Frame type="Frame" name="GameUI/UIContainer/FullscreenUpperContainer" file="GameUI"> <Frame type="Frame" name="MenuBarConsoleAnchor"> <Visible val="false"/> </Frame></Frame>
Another example :
<Frame type="MinimapPanel" name="GameUI/UIContainer/ConsoleUIContainer/MinimapPanel" file="GameUI">
<Frame type="Minimap" name="Minimap"> <Visible val="false"/> </Frame></Frame>
Learn more about UI here : https://sc2mapster.fandom.com/wiki/UI_Editor
HAVE FUN
And a nice day.
Hey I'm trying to clean up the UI by removing everything except for
1) the Info Panel that shows your selected units/stats
2) the resources
3) the game menu
I'd also like like to make the info panel smaller, change it to a square and move it to the side
I'd also like to make the resources slightly bigger and move them as well
https://100001.onl/
What's the easiest way to get this done? I've been having trouble finding a solution that doesn't require an entire UI rework.
Hello,
The easiest way is to create a new layout that overrides the GameUI. Then you hide elements you want from the container your want.
Example (bad one, since i hide the menu bar, welp) :
<Frame type="Frame" name="GameUI/UIContainer/FullscreenUpperContainer" file="GameUI">
<Frame type="Frame" name="MenuBarConsoleAnchor">
<Visible val="false"/>
</Frame>
</Frame>
Another example :
<Frame type="MinimapPanel" name="GameUI/UIContainer/ConsoleUIContainer/MinimapPanel" file="GameUI">
<Frame type="Minimap" name="Minimap">
<Visible val="false"/>
</Frame>
</Frame>
Learn more about UI here : https://sc2mapster.fandom.com/wiki/UI_Editor
HAVE FUN
And a nice day.