diff options
Diffstat (limited to 'client/src/camera.rs')
-rw-r--r-- | client/src/camera.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/camera.rs b/client/src/camera.rs index 78ce240..5e71519 100644 --- a/client/src/camera.rs +++ b/client/src/camera.rs @@ -39,7 +39,7 @@ impl Camera { } } pub fn update(&mut self, input_move: Vec3, input_rot: Vec2, dt: f32) { - let speed = 3.; + let speed = 5.; let vel_local = vec3(input_move.z, input_move.y, -input_move.x) * dt * speed; self.pos += self.rotation_mat() * vel_local; self.rot.x += input_rot.x * -0.002; |