安裝 Steam
登入
|
語言
簡體中文
日本語(日文)
한국어(韓文)
ไทย(泰文)
Български(保加利亞文)
Čeština(捷克文)
Dansk(丹麥文)
Deutsch(德文)
English(英文)
Español - España(西班牙文 - 西班牙)
Español - Latinoamérica(西班牙文 - 拉丁美洲)
Ελληνικά(希臘文)
Français(法文)
Italiano(義大利文)
Bahasa Indonesia(印尼語)
Magyar(匈牙利文)
Nederlands(荷蘭文)
Norsk(挪威文)
Polski(波蘭文)
Português(葡萄牙文 - 葡萄牙)
Português - Brasil(葡萄牙文 - 巴西)
Română(羅馬尼亞文)
Русский(俄文)
Suomi(芬蘭文)
Svenska(瑞典文)
Türkçe(土耳其文)
tiếng Việt(越南文)
Українська(烏克蘭文)
回報翻譯問題






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 );