From 1e76624c9bd73c4408f56088ec5ee85932607d06 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Fri, 25 Nov 2022 00:08:10 +0100 Subject: [PATCH] Increase viewport scroll speed for the recast editor Due to the large scale of the Apex maps, and the modifications done to the library, this had to be increased significantly. --- r5dev/naveditor/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/r5dev/naveditor/main.cpp b/r5dev/naveditor/main.cpp index f8163c9b..2cf16028 100644 --- a/r5dev/naveditor/main.cpp +++ b/r5dev/naveditor/main.cpp @@ -536,7 +536,7 @@ int not_main(int argc, char** argv) } else { - scrollZoom += 1.0f; + scrollZoom += 120.0f; } } else @@ -547,7 +547,7 @@ int not_main(int argc, char** argv) } else { - scrollZoom -= 1.0f; + scrollZoom -= 120.0f; } } break;