diff options
author | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2020-09-24 15:11:06 +0100 |
---|---|---|
committer | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2020-10-08 14:51:57 +0100 |
commit | 0d3e8538ef4703955499fc0f8d532a99c92cb689 (patch) | |
tree | 2aa1e692c588b9734690341f88e9bbd884114579 /modules/bullet/collision_object_bullet.cpp | |
parent | 53a3dfbf6b78cc3d0662abec4efa4bbeae4939f6 (diff) |
Update Bullet Area overlaps when Area properties or shapes change.
Diffstat (limited to 'modules/bullet/collision_object_bullet.cpp')
-rw-r--r-- | modules/bullet/collision_object_bullet.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/bullet/collision_object_bullet.cpp b/modules/bullet/collision_object_bullet.cpp index a3158a15e5..9ae688d7df 100644 --- a/modules/bullet/collision_object_bullet.cpp +++ b/modules/bullet/collision_object_bullet.cpp @@ -181,6 +181,7 @@ void CollisionObjectBullet::on_exit_area(AreaBullet *p_area) { void CollisionObjectBullet::set_godot_object_flags(int flags) { bt_collision_object->setUserIndex2(flags); + updated = true; } int CollisionObjectBullet::get_godot_object_flags() const { @@ -214,7 +215,7 @@ const btTransform &CollisionObjectBullet::get_transform__bullet() const { } void CollisionObjectBullet::notify_transform_changed() { - isTransformChanged = true; + updated = true; } RigidCollisionObjectBullet::~RigidCollisionObjectBullet() { |