From 5282c41f3eb05c79bc01a686b189321aa5a9e9c3 Mon Sep 17 00:00:00 2001 From: Korin <92170697+ItsKorin@users.noreply.github.com> Date: Thu, 2 May 2024 15:23:39 +0200 Subject: [PATCH] Fixed post_process.gd to update the shaders "dynamically_update" was doing nothing thus this update --- addons/post_processing/node/post_process.gd | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/post_processing/node/post_process.gd b/addons/post_processing/node/post_process.gd index 3d31863..45e160f 100644 --- a/addons/post_processing/node/post_process.gd +++ b/addons/post_processing/node/post_process.gd @@ -156,6 +156,8 @@ func _process(delta): return if not dynamically_update: return + else: + update_shaders() if configuration.reload: update_shaders() configuration.reload = false