diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-08-21 17:19:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-21 17:19:34 +0200 |
commit | 2ffc1c4105dd2788d0f35917b9db3d6066837bf9 (patch) | |
tree | 140d63a1a0c0473c6719cac8a00cb7a79711cacf /scene | |
parent | 6c1263f8ec365c9e7061ea2a7406fc79f6f793e0 (diff) | |
parent | a350fd4a5755fdaaecef820e181ddda4ce866830 (diff) |
Merge pull request #31534 from Calinou/3d-editor-distinguish-disabled-shapes
Draw 3D collision shape/raycast gizmos in grayscale when disabled
Diffstat (limited to 'scene')
-rw-r--r-- | scene/3d/collision_polygon.cpp | 2 | ||||
-rw-r--r-- | scene/3d/ray_cast.cpp | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/scene/3d/collision_polygon.cpp b/scene/3d/collision_polygon.cpp index db07059b32..37aa95fb43 100644 --- a/scene/3d/collision_polygon.cpp +++ b/scene/3d/collision_polygon.cpp @@ -151,6 +151,8 @@ float CollisionPolygon::get_depth() const { void CollisionPolygon::set_disabled(bool p_disabled) { disabled = p_disabled; + update_gizmo(); + if (parent) { parent->shape_owner_set_disabled(owner_id, p_disabled); } diff --git a/scene/3d/ray_cast.cpp b/scene/3d/ray_cast.cpp index 10f92058e0..30eed8f1a7 100644 --- a/scene/3d/ray_cast.cpp +++ b/scene/3d/ray_cast.cpp @@ -102,6 +102,8 @@ Vector3 RayCast::get_collision_normal() const { void RayCast::set_enabled(bool p_enabled) { enabled = p_enabled; + update_gizmo(); + if (is_inside_tree() && !Engine::get_singleton()->is_editor_hint()) set_physics_process_internal(p_enabled); if (!p_enabled) |