1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

Change default gizmo visibility and icons

This commit is contained in:
JFonS
2018-11-18 22:01:09 +01:00
parent e77afb8507
commit e5a4fa5281
2 changed files with 9 additions and 9 deletions

View File

@@ -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;