Europa Universalis IV

Europa Universalis IV

评价数不足
Just Another Graphics Mod
   
奖励
收藏
已收藏
取消收藏
文件大小
发表于
40.616 MB
2024 年 7 月 25 日 下午 6:58
1 项改动说明 ( 查看 )

订阅以下载
Just Another Graphics Mod

描述
There's a million graphics mods out there, but here's mine :^)

IRONMAN COMPATIBLE - EU4 1.37
This mod uses the wonderful Imperial Graphics as a base, and includes elements from...

Theatrum Orbis Terrarum
Europa Aesthetic
Plati's Map Visuals
Moulton's Graphical Map Pack - specifically the smaller province flags

Edited a few things, but other than that, credits go to the mods listed above.

Enjoy!
8 条留言
mawmz  [作者] 2024 年 10 月 22 日 上午 11:01 
No, not for a while.
Zyrph 2024 年 10 月 22 日 上午 10:57 
I assume its not out?
mawmz  [作者] 2024 年 10 月 22 日 上午 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 2024 年 10 月 18 日 下午 4:40 
Whats this "regnum deorum" in the last two images?
SolSeige 2024 年 9 月 14 日 下午 6:56 
It's very good, but the country names blur into the ocean
Clark Crente 2024 年 7 月 28 日 上午 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  [作者] 2024 年 7 月 28 日 上午 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 2024 年 7 月 28 日 上午 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 );