From f7b938d051a24b5effca87c7febc7dcc9827c833 Mon Sep 17 00:00:00 2001 From: webadderall <131426131+webadderall@users.noreply.github.com> Date: Fri, 8 May 2026 16:11:59 +1000 Subject: [PATCH] fix(debug): force motion blur tuning defaults --- src/components/video-editor/types.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/video-editor/types.ts b/src/components/video-editor/types.ts index 418255d8..18ef9a1c 100644 --- a/src/components/video-editor/types.ts +++ b/src/components/video-editor/types.ts @@ -114,10 +114,10 @@ export interface ZoomMotionBlurTuning { } export const DEFAULT_ZOOM_MOTION_BLUR_TUNING: ZoomMotionBlurTuning = { - panVelocityThreshold: 24, - zoomVelocityThreshold: 0.05, + panVelocityThreshold: 0, + zoomVelocityThreshold: 0.025, maxDirectionalBlurPx: 11, - maxRadialBlurStrength: 0.14, + maxRadialBlurStrength: 0.175, panResponsePerSecond: 11, zoomResponsePerSecond: 9, zoomSafeZoneRadiusPx: 6,