Skip to content

Commit

Permalink
fix: Reduce camera shake intensity
Browse files Browse the repository at this point in the history
  • Loading branch information
PraxTube committed Jan 17, 2024
1 parent 3360f7e commit ab2d4f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/camera.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ use crate::GameState;

const CAMERA_POSITION: Vec3 = Vec3::new(0.0, 50.0, 0.0);
const NOISE_STRENGTH: f32 = 10.0;
const TRANSLATION_SHAKE_STRENGTH: f32 = 50.0;
const ROTATION_SHAKE_STRENGTH: f32 = 2.0;
const TRANSLATION_SHAKE_STRENGTH: f32 = 25.0;
const ROTATION_SHAKE_STRENGTH: f32 = 1.0;

pub struct AceCameraPlugin;

Expand Down

0 comments on commit ab2d4f1

Please sign in to comment.