From 799c4a92248a42c6ea33cfd6a82e180f8d9c7690 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Mon, 28 Aug 2023 15:27:24 -0700 Subject: [PATCH] fix camera --- src/main.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main.rs b/src/main.rs index 450e5ca..426d143 100644 --- a/src/main.rs +++ b/src/main.rs @@ -7,7 +7,7 @@ // notice may not be copied, modified, or distributed except // according to those terms. -use cgmath::{Matrix3, Matrix4, Rad, Vector2, Vector3, Rotation, Quaternion, Euler}; +use cgmath::{Matrix3, Matrix4, Rad, Vector2, Vector3, Rotation, Quaternion, Euler, SquareMatrix}; use strafe_client::{Normal, Position, INDICES, NORMALS, POSITIONS}; use std::{sync::Arc, time::Instant}; use vulkano::{ @@ -66,7 +66,7 @@ const CONTROL_MOVEDOWN:u32 = 0b00100000; const FORWARD_DIR:Vector3 = Vector3::new(0,0,-1); const RIGHT_DIR:Vector3 = Vector3::new(1,0,0); -const UP_DIR:Vector3 = Vector3::new(0,1,0); +const UP_DIR:Vector3 = Vector3::new(0,-1,0); fn get_control_dir(controls: u32) -> Vector3{ //don't get fancy just do it @@ -359,7 +359,7 @@ fn main() { let dt = (time_now-time).as_secs_f64(); if dt > 1.0 / 120.0 { time = time_now; - let angles = Euler{x:Rad(mouse.y/128.),y:Rad(mouse.x/128.),z:Rad(0.0)}; + let angles = Euler{x:Rad(mouse.y/256.),y:Rad(mouse.x/-256.),z:Rad(0.0)}; let orientation=Quaternion::from(angles); pos += orientation.rotate_vector(get_control_dir(controls))*fly_speed; @@ -415,8 +415,8 @@ fn main() { let scale = Matrix4::from_scale(-0.01); let uniform_data = vs::Data { - world: Matrix4::from(rotation).into(), - view: (view * scale).cast::().unwrap().into(), + world: (Matrix4::from_translation(Vector3 { x: 0.0, y: 0.0, z: 0.0 }) * Matrix4::from(rotation) * scale).into(), + view: view.invert().unwrap().cast::().unwrap().into(), proj: proj.into(), };