Europa Universalis IV

Europa Universalis IV

Just Another Graphics Mod
8 comentarios
mawmz  [autor] 22 OCT 2024 a las 11:01 
No, not for a while.
Zyrph 22 OCT 2024 a las 10:57 
I assume its not out?
mawmz  [autor] 22 OCT 2024 a las 7:35 
Regnum Deorum is a pretty large scale alternate history mod I began working on over this past summer. College is very time consuming though, so I haven't got an opportunity to work on it very much.
Zyrph 18 OCT 2024 a las 16:40 
Whats this "regnum deorum" in the last two images?
SolSeige 14 SEP 2024 a las 18:56 
It's very good, but the country names blur into the ocean
Clark Crente 28 JUL 2024 a las 10:04 
thank you!

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
mawmz  [autor] 28 JUL 2024 a las 9:36 
Clark Crente Thanks for the feedback! I was considering just going with the vanilla font before releasing, and i might actually still do that. If I knew how the .shader files worked, I'd for sure implement the semi transparent terrain, but I have no experience with that haha.

Also I love your GMU mod, I used it for quite a long time!
Clark Crente 28 JUL 2024 a las 5:30 
Looks nice, maybe the font should be a little different, but just a nitpick. Nice ocean color/texture, matches the map. You should try to use some code for semi transparent terrain when the camera is near.

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