Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
i can barely say how i did it, it was a long ago lol
but you can use thick default font, something like that, the same of chewy's, looks nice with most of the mods
Also I love your GMU mod, I used it for quite a long time!
It's something like this, you can check my old paper mod just in case:
//TestCam scales the camera height above sea level to the interval (0,∞) with interest in making the transition start height = .5
float testCam = ( ( vCamPos.y - WATER_HEIGHT ) * .002f );
float colorRange = 1.0f;
if ( testCam < 1.0f )
{
colorRange = testCam ;
}
colorRange = .20f * colorRange + .05f;
float2 vBlend = float2( 1.1f - colorRange , colorRange); // Dynamic version (.95 in negi version)
vOut = (vTerrainDiffuseSample.rgb * vBlend.x + vColorMapSample.rgb * vBlend.y);
vOut = CalculateMapLighting( vOut, vHeightNormalSample )*1.25f; //regulates brightness of colored mapmodes on all zoom stages
vOut = calculate_secondary( Input.uv, vOut, Input.prepos.xz );