New customizable editor theme

This commit is contained in:
volzhs 2017-05-03 05:13:12 +09:00
parent 17e8e343fb
commit bb81293047
248 changed files with 5702 additions and 587 deletions

View file

@ -519,12 +519,12 @@ static int _get_key_modifier(const String &p_property) {
return 0;
}
bool SpatialEditorViewport::_gizmo_select(const Vector2 &p_screenpos, bool p_hilite_only) {
bool SpatialEditorViewport::_gizmo_select(const Vector2 &p_screenpos, bool p_highlight_only) {
if (!spatial_editor->is_gizmo_visible())
return false;
if (get_selected_count() == 0) {
if (p_hilite_only)
if (p_highlight_only)
spatial_editor->select_gizmo_highlight_axis(-1);
return false;
}
@ -557,7 +557,7 @@ bool SpatialEditorViewport::_gizmo_select(const Vector2 &p_screenpos, bool p_hil
if (col_axis != -1) {
if (p_hilite_only) {
if (p_highlight_only) {
spatial_editor->select_gizmo_highlight_axis(col_axis);
@ -597,7 +597,7 @@ bool SpatialEditorViewport::_gizmo_select(const Vector2 &p_screenpos, bool p_hil
if (col_axis != -1) {
if (p_hilite_only) {
if (p_highlight_only) {
spatial_editor->select_gizmo_highlight_axis(col_axis + 3);
} else {
@ -610,7 +610,7 @@ bool SpatialEditorViewport::_gizmo_select(const Vector2 &p_screenpos, bool p_hil
}
}
if (p_hilite_only)
if (p_highlight_only)
spatial_editor->select_gizmo_highlight_axis(-1);
return false;
@ -1679,7 +1679,7 @@ void SpatialEditorViewport::_draw() {
if (surface->has_focus()) {
Size2 size = surface->get_size();
Rect2 r = Rect2(Point2(), size);
get_stylebox("EditorFocus", "EditorStyles")->draw(surface->get_canvas_item(), r);
get_stylebox("Focus", "EditorStyles")->draw(surface->get_canvas_item(), r);
}
RID ci = surface->get_canvas_item();