1
0

Fix missing call to startGlowWobble in animeCat.js

This commit is contained in:
2025-05-26 07:52:40 +02:00
parent 98da6160ad
commit 0ca02f01b8

View File

@@ -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; }