This is a graphical enhancement mod with a bunch of shaders to make Kenshi look nicer. Specifically, it adds these postprocessing shaders:
- SSAO, which adds some shading to edges and gives a bit more depth. This shader was actually already in Kenshi, it was just disabled because it wasn't finished yet I guess.
- ColorTweak, which changes the colours a little. Mostly it adds contrast and vibrance.
- FXAA to smooth jagged edges. FXAA is an anti-aliasing algorithm from Nvidia.
- Adaptive-sharpen, a nice sharpening filter that I found on github.
You can download the latest version, (1.0, updated 27-06-2016), here.
How do I install this?
Simply unzip the zip file to your Kenshi main directory. It will overwrite several files in data/materials/post and add a new mod, called "Exposure". Launch Kenshi, make sure Exposure.mod is enabled, profit!!!
It's a good idea to make a backup of your Kenshi\data\materials\post folder before you install this!
Can I see it first?
I'll add some screenshots to the second post when I get around to it.
Biscuit Dog is using my mod in his awesome Kenshi series on youtube, by the way. So if you want to see what the old version looks like, check here. If you want to see him play with the new version, you'll have to wait until at least monday.
How much will this affect my FPS?
Well, that depends on your particular hardware and settings ofcourse. For me (i7-4790k and gtx 970), it seems to eat up about 1~4 fps, depending on the circumstances. In busy scenes where my fps is already kinda low, the difference is negligible, less than a frame. When I'm close to my max framerate (75hz monitor), it eats up about 4 frames.
Can I tweak the settings?
If you want to disable certain shaders, open "compositors.cfg" and put a # in front of them.
Please note that if you disable ColorTweak and still want to use FXAA, you need to change this line:
Code: Select all
#define FXAA_GREEN_AS_LUMA 0Code: Select all
#define FXAA_GREEN_AS_LUMA 1I could really use your feedback, especially on the colours. If you try my mod, please do let me know how you like the brightness and colour saturation, and how it changes as the day progresses and when it rains.
Code: Select all
Changelog:
1.0
- moved the SSAO compositor to the top of the post processing chain to avoid AO being placed over fog
- dialed down the SSAO and sharpening effects a notch and some other minor tweaks