From 458cbef64eb5c83e84b02f1cfe818dc3bdecc081 Mon Sep 17 00:00:00 2001 From: Tomasz Chabora Date: Sun, 26 Apr 2020 23:40:41 +0200 Subject: [PATCH] Make Line2D be white by default --- scene/2d/line_2d.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/2d/line_2d.cpp b/scene/2d/line_2d.cpp index c45eab70df6..43c54ffd172 100644 --- a/scene/2d/line_2d.cpp +++ b/scene/2d/line_2d.cpp @@ -43,7 +43,7 @@ Line2D::Line2D() { _begin_cap_mode = LINE_CAP_NONE; _end_cap_mode = LINE_CAP_NONE; _width = 10; - _default_color = Color(0.4, 0.5, 1); + _default_color = Color(1, 1, 1); _texture_mode = LINE_TEXTURE_NONE; _sharp_limit = 2.f; _round_precision = 8;