From 5504d1588d26024b80ed7289be28c5d67a2f4afb Mon Sep 17 00:00:00 2001 From: Valerie Date: Thu, 16 May 2024 11:35:41 -0400 Subject: [PATCH] aberration now has less clarity and works with other post-processing effects --- shaders/final.fsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shaders/final.fsh b/shaders/final.fsh index 9e148d9..a246234 100644 --- a/shaders/final.fsh +++ b/shaders/final.fsh @@ -39,7 +39,7 @@ void main() { // physical post-processing effects #ifdef aberration - color.rb = aberrate().rb; + color.rb = (color.rb + aberrate().rb) / 2; #endif