LOADING SCREEN - Hypnootize/m0rehud GitHub Wiki
HOW TO USE CUSTOM BACKGROUNDS
The loading screen is located in m0rehud/Resource/UI/StatSummary.res
, this file is pre setup the enable users to easily swap the background but it will still require a couple of manual steps:
- First convert the image you wish to use as background to a
.VTF
file, here is a quick guide on how to achieve that - Once you have the
.VTF
file of your image make sure to call itloading_bg
and place it insidem0rehud\Materials\VGUI\Replay\Thumbnails\Menu
- Last open
m0rehud/Resource/UI/StatSummary.res
look for"CustomBackground"
and set the"visible"
value to"1"
You should now be able to see your custom background in the loading screen panel!
ENABLING/DISABLING PLAYER STATS AND DUELS
If you are looking for a cleaner look you can opt to disable some of the elements shown in the loading screen such as the player stats, already available in the loadout menu, or the player duels/map infos
PLAYER STATS
The player statistics can be found inside m0rehud/Resource/UI/StatSummary.res
and they are under an element called "StatData"
.
This element can be disabled by editing it's "xpos"
to a value like "9999"
effectively moving it off screen and thus making it invisible.
If needed it can then be re-enabled by setting the value back to "0"
DUELS AND MAP INFORMATION
Much like the player stats, these two elements can be found inside m0rehud/Resource/UI/StatSummary.res
under the "MapInfo"
element.
Again this element can be move off screen by editing it's "xpos"
to "9999"
, or instead you can chose to only hide certain elements that are part of "MapInfo"
, such as "MapImage"
the stamp images of each map, "Background"
being the full screen map background and so on...
MAP NAME AND GAME TYPE
Last, a quick run down of the map name and game type elements:
"OnYourWayLabel"
: Pretty self explanatory, this is the "On Your Way Label" displayed above the map name
"MapLabel"
: The Map name you are headed to
"MapType"
: The gamemode type of the map you are headed to
All three will be by default in the top right, you are free to move them and re-color them to your liking!