diff --git a/Camera.cpp b/Camera.cpp index 6174f67..29820ad 100644 --- a/Camera.cpp +++ b/Camera.cpp @@ -95,8 +95,8 @@ void Camera::ReadInput(float _dt) if (input.KeyDown('S')) moveLong -= 1.0f; if (input.KeyDown('D')) moveLat += 1.0f; if (input.KeyDown('A')) moveLat -= 1.0f; - if (input.KeyDown('E')) moveVert += 1.0f; - if (input.KeyDown('Q')) moveVert -= 1.0f; + if (input.KeyDown(VK_SPACE)) moveVert += 1.0f; + if (input.KeyDown('X')) moveVert -= 1.0f; if (input.KeyDown(VK_SHIFT)) modify *= 2.0f; if (input.KeyDown(VK_CONTROL)) modify /= 2.0f; diff --git a/Game.cpp b/Game.cpp index d8f4e9d..8caa79c 100644 --- a/Game.cpp +++ b/Game.cpp @@ -33,7 +33,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, -1.0f, (float)width / height, 70, 0.01f, 1000.0f); + camera = std::make_shared(0.0f, 0.0f, -4.0f, (float)width / height, 60, 0.01f, 1000.0f); } // --------------------------------------------------------