tune: stabilize heading-up rotation deadzone

This commit is contained in:
2026-03-19 16:53:25 +08:00
parent ceb5479c69
commit 714d86356d
2 changed files with 2 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ const ROTATE_STEP_DEG = 15
const AUTO_ROTATE_FRAME_MS = 10 const AUTO_ROTATE_FRAME_MS = 10
const AUTO_ROTATE_EASE = 0.24 const AUTO_ROTATE_EASE = 0.24
const AUTO_ROTATE_SNAP_DEG = 0.1 const AUTO_ROTATE_SNAP_DEG = 0.1
const AUTO_ROTATE_DEADZONE_DEG = 1.5 const AUTO_ROTATE_DEADZONE_DEG = 5
const AUTO_ROTATE_MAX_STEP_DEG = 0.9 const AUTO_ROTATE_MAX_STEP_DEG = 0.9
const AUTO_ROTATE_HEADING_SMOOTHING = 0.32 const AUTO_ROTATE_HEADING_SMOOTHING = 0.32

View File

@@ -4,7 +4,7 @@ type MapPageData = MapEngineViewState & {
showDebugPanel: boolean showDebugPanel: boolean
} }
const INTERNAL_BUILD_VERSION = 'map-build-63' const INTERNAL_BUILD_VERSION = 'map-build-64'
let mapEngine: MapEngine | null = null let mapEngine: MapEngine | null = null