Merge pull request #57792 from timothyqiu/raycast-clear-except-3.x
This commit is contained in:
commit
69c15c7ab8
2 changed files with 14 additions and 0 deletions
|
@ -258,6 +258,13 @@ void RayCast2D::remove_exception(const Object *p_object) {
|
|||
|
||||
void RayCast2D::clear_exceptions() {
|
||||
exclude.clear();
|
||||
|
||||
if (exclude_parent_body && is_inside_tree()) {
|
||||
CollisionObject2D *parent = Object::cast_to<CollisionObject2D>(get_parent());
|
||||
if (parent) {
|
||||
exclude.insert(parent->get_rid());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void RayCast2D::set_collide_with_areas(bool p_clip) {
|
||||
|
|
|
@ -256,6 +256,13 @@ void RayCast::remove_exception(const Object *p_object) {
|
|||
|
||||
void RayCast::clear_exceptions() {
|
||||
exclude.clear();
|
||||
|
||||
if (exclude_parent_body && is_inside_tree()) {
|
||||
CollisionObject *parent = Object::cast_to<CollisionObject>(get_parent());
|
||||
if (parent) {
|
||||
exclude.insert(parent->get_rid());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void RayCast::set_collide_with_areas(bool p_clip) {
|
||||
|
|
Loading…
Reference in a new issue