diff options
Diffstat (limited to 'client/src/camera.rs')
-rw-r--r-- | client/src/camera.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/client/src/camera.rs b/client/src/camera.rs index 289e773..1471a48 100644 --- a/client/src/camera.rs +++ b/client/src/camera.rs @@ -18,8 +18,8 @@ impl Camera { } pub fn update(&mut self, input_move: Vec3, input_rot: Vec2, dt: f32) { self.pos += input_move * dt; - self.rot.x += input_rot.x * 0.002; - self.rot.y += input_rot.y * 0.002; + self.rot.x += input_rot.y * 0.002; + self.rot.y += input_rot.x * 0.002; } pub fn to_matrix(&self) -> Mat4 { // let tdir = @@ -28,10 +28,11 @@ impl Camera { Mat4::perspective_infinite_reverse_rh(self.fov, self.aspect, 0.1) * Mat4::from_mat3(Mat3::from_euler( - EulerRot::ZXY, + EulerRot::YXZ, self.rot.x, self.rot.y, self.rot.z, )) + * Mat4::from_translation(-self.pos) } } |