diff --git a/main/main.collection b/main/main.collection index c7b2582..cf11370 100644 --- a/main/main.collection +++ b/main/main.collection @@ -106,12 +106,12 @@ embedded_instances { " }\n" " properties {\n" " id: \"orbital_camera\"\n" - " value: \"true\"\n" + " value: \"false\"\n" " type: PROPERTY_TYPE_BOOLEAN\n" " }\n" " properties {\n" " id: \"movement_speed\"\n" - " value: \"0.1\"\n" + " value: \"5.0\"\n" " type: PROPERTY_TYPE_NUMBER\n" " }\n" " property_decls {\n" diff --git a/vantage/vantage_core.lua b/vantage/vantage_core.lua index 8d8a5ed..942dfb1 100644 --- a/vantage/vantage_core.lua +++ b/vantage/vantage_core.lua @@ -87,7 +87,9 @@ M.wasd = { elseif action_id == hash(M.VANTAGE_E) then move_up(self) elseif action_id == hash(M.VANTAGE_MOUSE_1) then - rotate(self, action.dx, action.dy) + if not action.pressed then + rotate(self, action.dx, action.dy) + end end end }