From f20cb4c108f4df186a8267250b24a054dec85943 Mon Sep 17 00:00:00 2001 From: kijai <40791699+kijai@users.noreply.github.com> Date: Mon, 14 Jul 2025 15:27:53 +0300 Subject: [PATCH] Update image_nodes.py --- nodes/image_nodes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nodes/image_nodes.py b/nodes/image_nodes.py index 2d3ae65..70a8067 100644 --- a/nodes/image_nodes.py +++ b/nodes/image_nodes.py @@ -1285,9 +1285,9 @@ class CrossFadeImages: return 3 * t * t - 2 * t * t * t def bounce(t): if t < 0.5: - return self.ease_out(t * 2) * 0.5 + return ease_out(t * 2) * 0.5 else: - return self.ease_in((t - 0.5) * 2) * 0.5 + 0.5 + return ease_in((t - 0.5) * 2) * 0.5 + 0.5 def elastic(t): return math.sin(13 * math.pi / 2 * t) * math.pow(2, 10 * (t - 1)) def glitchy(t):