1
0

Adjust minimum stroke distance for joy animation in animeCat.js

This commit is contained in:
2025-05-26 03:57:50 +02:00
parent 4c4bc41e78
commit 59a130d1ad

View File

@@ -170,7 +170,7 @@ _bindMouseHold() {
// Timer für Joy-Animation, aber NUR wenn genug gestreichelt
holdTimer = setTimeout(() => {
if (moveDist >= 100) { // mind. 100px gestreichelt!
if (moveDist >= 75) { // mind. 75px gestreichelt!
joyActive = true;
this._runJoyAnimation(() => {
joyActive = false;