Skip to content

Commit 22a1311

Browse files
alice-i-cecilemate-h
authored andcommitted
Reduce default sensitivity for free_cam controller (bevyengine#21451)
# Objective As pointed out by @BigWingBeat in bevyengine#20215 (comment) the default mouse sensitivity of the free_cam controller is crazy high. ## Solution Divide the sensitivity value by 5. 10 was too much, but 5 feels about right for a "careful and controlled scene editor". ## Testing `cargo run --example 3d_gizmos --features="free_cam"`
1 parent a15c6a8 commit 22a1311

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/bevy_camera_controller/src/free_cam.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ impl Default for FreeCam {
106106
Self {
107107
enabled: true,
108108
initialized: false,
109-
sensitivity: 1.0,
109+
sensitivity: 0.2,
110110
key_forward: KeyCode::KeyW,
111111
key_back: KeyCode::KeyS,
112112
key_left: KeyCode::KeyA,

0 commit comments

Comments
 (0)