summaryrefslogtreecommitdiffstats
path: root/editor/plugins/spatial_editor_plugin.h
diff options
context:
space:
mode:
authorJFonS <joan.fonssanchez@gmail.com>2018-11-18 22:01:09 +0100
committerJFonS <joan.fonssanchez@gmail.com>2018-11-18 22:01:09 +0100
commite5a4fa52819b6a251fce2102a8db38a0bfae420f (patch)
tree64e3af5e612bb89ef959e164bd8f6f436012612c /editor/plugins/spatial_editor_plugin.h
parente77afb85072a7bea10075221b9a24abd442e1318 (diff)
downloadredot-engine-e5a4fa52819b6a251fce2102a8db38a0bfae420f.tar.gz
Change default gizmo visibility and icons
Diffstat (limited to 'editor/plugins/spatial_editor_plugin.h')
-rw-r--r--editor/plugins/spatial_editor_plugin.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/plugins/spatial_editor_plugin.h b/editor/plugins/spatial_editor_plugin.h
index 3cce76cc17..c515a4aaf9 100644
--- a/editor/plugins/spatial_editor_plugin.h
+++ b/editor/plugins/spatial_editor_plugin.h
@@ -754,9 +754,9 @@ class EditorSpatialGizmoPlugin : public Resource {
GDCLASS(EditorSpatialGizmoPlugin, Resource);
public:
- static const int ON_TOP = 0;
- static const int VISIBLE = 1;
- static const int HIDDEN = 2;
+ static const int VISIBLE = 0;
+ static const int HIDDEN = 1;
+ static const int ON_TOP = 2;
private:
int current_state;