From 0ca02f01b83c1e32f529f57d3cfc373597ade828 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 26 May 2025 07:52:40 +0200 Subject: [PATCH] Fix missing call to startGlowWobble in animeCat.js --- animeCat.js | 1 + 1 file changed, 1 insertion(+) diff --git a/animeCat.js b/animeCat.js index b0711ac..094d884 100644 --- a/animeCat.js +++ b/animeCat.js @@ -173,6 +173,7 @@ window.AnimeCat = class AnimeCat { stopGlowWobble() { if (this._glowWobbleId) cancelAnimationFrame(this._glowWobbleId); } + this.startGlowWobble(); // Hilfsfunktionen zur Farbinterpolation _lerp(a, b, t) { return a + (b - a) * t; }