fix hesitant

This commit is contained in:
osiu97
2026-07-08 21:26:08 +02:00
parent b866ae9d4d
commit a28dd7543d
+3
View File
@@ -61,6 +61,9 @@ export const MotionEffects = {
getQueueAction(mode, maxDist, blendThreshold) {
if (mode === 'jumpy') {
if (maxDist <= 5) return { action: 'wait', delay: 100 };
} else if (mode === 'hesitant') {
// Lower blend threshold prevents blasting all speed-change waypoints instantly
if (maxDist <= 30) return { action: 'blend' };
} else {
if (maxDist <= blendThreshold) return { action: 'blend' };
}