chiefdogIs it possible to make it so that minimode disables all hud elements except the killfeed? I have a recording hud that only shows the killfeed and would like to switch conveniently, between a "normal" hud and recording mode. I was wondering if with minimode, I could move all the elements to Narnia or smth.
The _minmode tag can be applied to nearly any key-value pair.
"MyElement"
{
"visible" "1" // Visible normally
"visible_minmode" "0" // Hidden when in minmode
}
"Element2ElectricBoogaloo"
{
// Center screen normally
"xpos" "c-50"
"ypos" "c-50"
"wide" "100"
"tall" "100"
// Bottom right in minmode, notice that width and height are not present.
"xpos_minmode" "r100"
"ypos_minmode" "r100"
}
The width and height are ommited for minmode because they will use the values already present for normal mode, reducing the need for multiple definitions of the same information.