diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-02-20 08:45:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-20 08:45:28 +0100 |
commit | bb13ec98f33af90232d6222c96bdb1a6a44fcfc6 (patch) | |
tree | 3c395bb4f816bb957c18904aaa0a8fbfa974f769 /scene/main | |
parent | dc1ae065578baee102d461353c757ebf2cc5cf8c (diff) | |
parent | 23a1f616fd6c1cdb60b06d4f6e2411ad8ea0f7c2 (diff) |
Merge pull request #34923 from Calinou/debug-collision-shapes-draw-outline
Draw an outline for 2D debug collision shapes
Diffstat (limited to 'scene/main')
-rw-r--r-- | scene/main/scene_tree.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/main/scene_tree.cpp b/scene/main/scene_tree.cpp index 6d50738de1..9f32c65f7b 100644 --- a/scene/main/scene_tree.cpp +++ b/scene/main/scene_tree.cpp @@ -1327,7 +1327,7 @@ SceneTree::SceneTree() { if (singleton == nullptr) { singleton = this; } - debug_collisions_color = GLOBAL_DEF("debug/shapes/collision/shape_color", Color(0.0, 0.6, 0.7, 0.5)); + debug_collisions_color = GLOBAL_DEF("debug/shapes/collision/shape_color", Color(0.0, 0.6, 0.7, 0.42)); debug_collision_contact_color = GLOBAL_DEF("debug/shapes/collision/contact_color", Color(1.0, 0.2, 0.1, 0.8)); debug_navigation_color = GLOBAL_DEF("debug/shapes/navigation/geometry_color", Color(0.1, 1.0, 0.7, 0.4)); debug_navigation_disabled_color = GLOBAL_DEF("debug/shapes/navigation/disabled_geometry_color", Color(1.0, 0.7, 0.1, 0.4)); |