This commit is contained in:
lightling 2022-03-19 14:02:39 -04:00
parent ec64fc1475
commit 0b3bf9bb28
Signed by: lightling
GPG key ID: 016F11E0AA296B67

View file

@ -95,8 +95,8 @@ void Camera::ReadInput(float _dt)
if (input.KeyDown('S')) moveLong -= 1.0f; if (input.KeyDown('S')) moveLong -= 1.0f;
if (input.KeyDown('D')) moveLat += 1.0f; if (input.KeyDown('D')) moveLat += 1.0f;
if (input.KeyDown('A')) moveLat -= 1.0f; if (input.KeyDown('A')) moveLat -= 1.0f;
if (input.KeyDown(VK_SPACE)) moveVert += 1.0f; if (input.KeyDown('E')) moveVert += 1.0f;
if (input.KeyDown('X')) moveVert -= 1.0f; if (input.KeyDown('Q')) moveVert -= 1.0f;
if (input.KeyDown(VK_SHIFT)) modify *= 2.0f; if (input.KeyDown(VK_SHIFT)) modify *= 2.0f;
if (input.KeyDown(VK_CONTROL)) modify /= 2.0f; if (input.KeyDown(VK_CONTROL)) modify /= 2.0f;