From 7ad26198c194547ec9f36e5faed3060e6d18e187 Mon Sep 17 00:00:00 2001 From: Mock Date: Wed, 8 Apr 2026 20:41:18 +0800 Subject: [PATCH] fix: speed 0.8 --- frontend/src/components/ControlPanel.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/ControlPanel.vue b/frontend/src/components/ControlPanel.vue index b8a8951..74a9b23 100644 --- a/frontend/src/components/ControlPanel.vue +++ b/frontend/src/components/ControlPanel.vue @@ -22,8 +22,8 @@ function commandValues() { let ly = 0 let az = 0 - if (keys.has('KeyW')) lx += 0.2 - if (keys.has('KeyS')) lx -= 0.2 + if (keys.has('KeyW')) lx += 0.8 + if (keys.has('KeyS')) lx -= 0.8 if (keys.has('KeyA')) ly += 0.15 if (keys.has('KeyD')) ly -= 0.15 if (keys.has('KeyQ')) az += 0.4