From 0b3b3de2cd8a53dc1e5c2c3d7b67407a02ca6ed4 Mon Sep 17 00:00:00 2001 From: volzhs Date: Tue, 17 Apr 2018 15:06:15 +0900 Subject: [PATCH] Ability to change path color with self modulate Fix #18164 (cherry picked from commit d77ffa3e97932b17e6b3da5b776b0d0760f3ce6e) --- scene/2d/path_2d.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scene/2d/path_2d.cpp b/scene/2d/path_2d.cpp index 052a0ac026b..cbdf81b80aa 100644 --- a/scene/2d/path_2d.cpp +++ b/scene/2d/path_2d.cpp @@ -92,7 +92,7 @@ void Path2D::_notification(int p_what) { #else const float line_width = 2; #endif - const Color color = Color(0.5, 0.6, 1.0, 0.7); + const Color color = Color(1.0, 1.0, 1.0, 1.0); for (int i = 0; i < curve->get_point_count(); i++) { @@ -147,6 +147,7 @@ void Path2D::_bind_methods() { Path2D::Path2D() { set_curve(Ref(memnew(Curve2D))); //create one by default + set_self_modulate(Color(0.5, 0.6, 1.0, 0.7)); } /////////////////////////////////////////////////////////////////////////////////