From e7968954e864a216903a71dc60c015bc828906ca Mon Sep 17 00:00:00 2001 From: "Mateus Felipe C. C. Pinto" Date: Tue, 18 Dec 2018 13:46:03 -0200 Subject: Change color of AnimationPlayer curve to "highlight" This is to be consistent with Curve editor and to be less confusing related to tangent lines color. --- editor/animation_bezier_editor.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/editor/animation_bezier_editor.cpp b/editor/animation_bezier_editor.cpp index f0dc3ce305..6f9e7308c3 100644 --- a/editor/animation_bezier_editor.cpp +++ b/editor/animation_bezier_editor.cpp @@ -408,7 +408,8 @@ void AnimationBezierTrackEdit::_notification(int p_what) { } //draw edited curve - _draw_track(track, accent); + const Color highlight = get_color("highlight_color", "Editor"); + _draw_track(track, highlight); } //draw editor handles -- cgit v1.2.3