summaryrefslogtreecommitdiff
path: root/scene/2d
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-04-27 08:56:34 +0200
committerGitHub <noreply@github.com>2020-04-27 08:56:34 +0200
commit3031641879aaeddd2465a83f43a309d6cbe0cd52 (patch)
tree676637cd572dd67e31ca9c620e8f6433f44088ea /scene/2d
parent2c91b7f27a7bb140df9601d6d3bc4fc5f533b43b (diff)
parent458cbef64eb5c83e84b02f1cfe818dc3bdecc081 (diff)
Merge pull request #38243 from KoBeWi/whine
Make Line2D be white by default
Diffstat (limited to 'scene/2d')
-rw-r--r--scene/2d/line_2d.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/2d/line_2d.cpp b/scene/2d/line_2d.cpp
index c45eab70df..43c54ffd17 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;