summaryrefslogtreecommitdiff
path: root/scene
diff options
context:
space:
mode:
authorTomasz Chabora <kobewi4e@gmail.com>2020-04-26 23:40:41 +0200
committerTomasz Chabora <kobewi4e@gmail.com>2020-04-26 23:40:41 +0200
commit458cbef64eb5c83e84b02f1cfe818dc3bdecc081 (patch)
treeee0d13a6b5bd35f6b362ba6e033ef684796db56f /scene
parent5f645e5d84b73fbf7ff83137d3d0a5f7408c3ba6 (diff)
Make Line2D be white by default
Diffstat (limited to 'scene')
-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;