From 5ef2c7e338ca60490eb577f97f7225f3b2ccdf6f Mon Sep 17 00:00:00 2001 From: Dario Date: Tue, 27 Jan 2026 22:28:14 -0300 Subject: [PATCH] Scale Jiggy shine back to zero on launcher animation on animation end. --- src/main/launcher_animation.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/launcher_animation.cpp b/src/main/launcher_animation.cpp index a3e4645..af31fea 100644 --- a/src/main/launcher_animation.cpp +++ b/src/main/launcher_animation.cpp @@ -249,7 +249,9 @@ void banjo::launcher_animation_setup(recompui::LauncherMenu *menu) { launcher_context.jiggy_shine_svg.scale_keyframes = { { 0.0f, 0.0f, 0.0f }, { jiggy_shine_start, 0.0f, 0.0f }, - { jiggy_shine_start + 0.01f, 1.0f, 1.0f }, + { jiggy_shine_start, 1.0f, 1.0f }, + { jiggy_shine_start + jiggy_shine_length, 1.0f, 1.0f }, + { jiggy_shine_start + jiggy_shine_length, 0.0f, 0.0f }, }; launcher_context.jiggy_shine_svg.position_animation.interpolation_method = InterpolationMethod::Smootherstep;