diff options
Diffstat (limited to 'gfx/followCameraController.cpp')
-rw-r--r-- | gfx/followCameraController.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gfx/followCameraController.cpp b/gfx/followCameraController.cpp index 1a5a5d3..25861b6 100644 --- a/gfx/followCameraController.cpp +++ b/gfx/followCameraController.cpp @@ -31,7 +31,7 @@ FollowCameraController::updateCamera(Camera * camera) const break; case Mode::ISO: - camera->pos = pos + ((up + north + east) * 20.F); + camera->pos = pos + ((up + north + east) * 40.F); camera->forward = -glm::normalize(up + north + east); camera->up = glm::normalize(up - north - east); break; |