diff options
author | Zach Young <zachyoung@Zachs-MacBook-Air.local> | 2019-04-22 01:41:17 -0400 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2019-06-19 14:03:08 +0200 |
commit | 7b1e112f1ddecfa8c7558d2958bc7ad44ad28c56 (patch) | |
tree | f4c8bced903127acf120ff4622c04bd1ca082c74 /editor/plugins/spatial_editor_plugin.h | |
parent | 082a2bcb9fae62ae35bff29d90d04ea1d15ca14a (diff) | |
download | redot-engine-7b1e112f1ddecfa8c7558d2958bc7ad44ad28c56.tar.gz |
Fixed navigation schemes Modo/Maya when used with grid map tile placement
Diffstat (limited to 'editor/plugins/spatial_editor_plugin.h')
-rw-r--r-- | editor/plugins/spatial_editor_plugin.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/editor/plugins/spatial_editor_plugin.h b/editor/plugins/spatial_editor_plugin.h index f3a1e657cc..ebaa930eb0 100644 --- a/editor/plugins/spatial_editor_plugin.h +++ b/editor/plugins/spatial_editor_plugin.h @@ -178,6 +178,12 @@ public: GIZMO_GRID_LAYER = 25 }; + enum NavigationScheme { + NAVIGATION_GODOT, + NAVIGATION_MAYA, + NAVIGATION_MODO, + }; + private: int index; String name; @@ -260,12 +266,6 @@ private: PopupMenu *selection_menu; - enum NavigationScheme { - NAVIGATION_GODOT, - NAVIGATION_MAYA, - NAVIGATION_MODO, - }; - enum NavigationZoomStyle { NAVIGATION_ZOOM_VERTICAL, NAVIGATION_ZOOM_HORIZONTAL |