diff options
author | RaphaelHunter <Raphael10241024@gmail.com> | 2019-11-14 15:48:41 +0800 |
---|---|---|
committer | RaphaelHunter <Raphael10241024@gmail.com> | 2019-11-14 15:48:41 +0800 |
commit | 8330e70e2cc935a92cf11862b68f6cfa0ce66fe8 (patch) | |
tree | eae9c7d380cd1c7fac8c7c67f010c172d56fb227 /servers/physics_2d | |
parent | 14e52f7aeea449dc6cfa8861657b2e23cc34c560 (diff) |
refresh area2d collision when shape changes, close #33369
Diffstat (limited to 'servers/physics_2d')
-rw-r--r-- | servers/physics_2d/area_2d_sw.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/servers/physics_2d/area_2d_sw.cpp b/servers/physics_2d/area_2d_sw.cpp index 9ec1eacd29..9275e8883f 100644 --- a/servers/physics_2d/area_2d_sw.cpp +++ b/servers/physics_2d/area_2d_sw.cpp @@ -46,6 +46,9 @@ Area2DSW::BodyKey::BodyKey(Area2DSW *p_body, uint32_t p_body_shape, uint32_t p_a } void Area2DSW::_shapes_changed() { + + if (!moved_list.in_list() && get_space()) + get_space()->area_add_to_moved_list(&moved_list); } void Area2DSW::set_transform(const Transform2D &p_transform) { |