game_text
entity.platform/resource/TrackerScheme.res
(steam_legacy version) or valve/resource/TrackerScheme.res
(anniversary version) file to the <your-mod>/resource
directory (replacing <your-mod>
with your mod directory). Open the file in any text editor. The format of TrackerScheme.res
is quite simple - named sections with subsections between {
and }
characters.
"EngineFont"
section - it describes the font used for non-transparent texts (e.g. multiplayer chat). Here you can see several numbered entries like this:
"1"
{
"name" "Verdana"
"tall" "12"
"weight" "600"
"yres" "480 599"
"dropshadow" "1"
}
"2"
{
"name" "Verdana"
"tall" "13"
"weight" "600"
"yres" "600 767"
"dropshadow" "1"
}
"3"
{
"name" "Verdana"
"tall" "14"
"weight" "600"
"yres" "768 1023"
"dropshadow" "1"
}
"4"
{
"name" "Verdana"
"tall" "20"
"weight" "600"
"yres" "1024 1199"
"dropshadow" "1"
}
The "yres"
property tells the min and max height resolution the specified font will be used for. E.g. if you have a 1920x1080 screen and run Half-Life in fullscreen mode, the section 4 will be used because 1080 is in the [1024, 1199] boundaries. The "tall"
property defines the font size. Increase the number, start the game and type in chat. Change the size accordingly for all resolutions. You can also change the font type by changing the "name"
entry. For example, change "Verdana" to "Trebuchet"."yres"
boundaries - just keep the numbers for more entries in order (add "5"
, "6"
, "7"
, etc.)
"Legacy_CreditsFont"
section (on steam_legacy branch) and by "CreditsFont"
(on the current/anniversary branch)."EngineFont"
, but unlike it the "Legacy_CreditsFont"
defines only one entry by default thus making the text have the same size on all resolutions. This is not good! Let's put more entries and adjust sizes for different resolutions. Example:
"1"
{
"name" "Trebuchet MS"
"tall" "20"
"weight" "700"
"antialias" "1"
"yres" "1 767"
}
"2"
{
"name" "Trebuchet MS"
"tall" "22"
"weight" "700"
"antialias" "1"
"yres" "768 1023"
}
"3"
{
"name" "Trebuchet MS"
"tall" "30"
"weight" "700"
"antialias" "1"
"yres" "1024 1199"
}
"4"
{
"name" "Trebuchet MS"
"tall" "36"
"weight" "700"
"antialias" "1"
"yres" "1200 1439"
}
"5"
{
"name" "Trebuchet MS"
"tall" "48"
"weight" "700"
"antialias" "1"
"yres" "1440 2559"
}
"6"
{
"name" "Trebuchet MS"
"tall" "60"
"weight" "700"
"antialias" "1"
"yres" "2560 6000"
}
Now start the game and load some map that shows a chapter title or credits (e.g. c1a0) and see the nice font size appropriate for your resolution.
You must log in to post a comment. You can login or register a new account.