diff --git a/Camera.cpp b/Camera.cpp index 6174f67..a9985e7 100644 --- a/Camera.cpp +++ b/Camera.cpp @@ -3,7 +3,7 @@ using namespace DirectX; -Camera::Camera(float _x, float _y, float _z, float _aspect, float _fov, float _near, float _far) +Camera::Camera(float _x, float _y, float _z, float _aspect, float _fov, float _near, float _far, float _moveSpeed) { transform.SetPosition(_x, _y, _z); @@ -11,6 +11,7 @@ Camera::Camera(float _x, float _y, float _z, float _aspect, float _fov, float _n fovYRadians = XMConvertToRadians(_fov); clipNear = _near; clipFar = _far; + moveSpeed = _moveSpeed; UpdateViewMatrix(); UpdateProjectionMatrix(); @@ -100,8 +101,8 @@ void Camera::ReadInput(float _dt) if (input.KeyDown(VK_SHIFT)) modify *= 2.0f; if (input.KeyDown(VK_CONTROL)) modify /= 2.0f; - transform.TranslateRelative(moveLat * _dt * modify, 0, moveLong * _dt * modify); - transform.TranslateAbsolute(0, moveVert * _dt * modify, 0); + transform.TranslateRelative(moveLat * _dt * modify * moveSpeed, 0, moveLong * _dt * modify * moveSpeed); + transform.TranslateAbsolute(0, moveVert * _dt * modify * moveSpeed, 0); if (input.MouseLeftDown()) { diff --git a/Camera.h b/Camera.h index d18fe99..d51acab 100644 --- a/Camera.h +++ b/Camera.h @@ -6,7 +6,7 @@ class Camera { public: - Camera(float _x, float _y, float _z, float _aspect, float _fov, float _near, float _far); + Camera(float _x, float _y, float _z, float _aspect, float _fov, float _near, float _far, float _moveSpeed); ~Camera(); void Update(float _dt); @@ -23,6 +23,7 @@ public: void SetFarClip(float _far); private: + float moveSpeed; float aspect; float fovYRadians; float clipNear; diff --git a/Game.cpp b/Game.cpp index 98257ac..334dd26 100644 --- a/Game.cpp +++ b/Game.cpp @@ -34,7 +34,7 @@ Game::Game(HINSTANCE hInstance) CreateConsoleWindow(500, 120, 32, 120); printf("Console window created successfully. Feel free to printf() here.\n"); #endif - camera = std::make_shared(0.0f, 0.0f, -20.0f, (float)width / height, 60, 0.01f, 1000.0f); + camera = std::make_shared(0.0f, 0.0f, -10.0f, (float)width / height, 60, 0.01f, 1000.0f, 5.0f); } // -------------------------------------------------------- @@ -226,7 +226,7 @@ void Game::CreateBasicGeometry() for (int i = 0; i < entities.size(); ++i) { - entities[i]->GetTransform()->SetPosition((-(int)(entities.size() / 2) + i) * 5, 0, 0); + entities[i]->GetTransform()->SetPosition((-(int)(entities.size() / 2) + i + 0.5f) * 2.5f, 0, 0); } skybox = std::make_shared(