diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2024-04-14 23:07:41 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2024-04-15 12:28:36 +0800 |
commit | 4176102a5ebaf853094a19f10142d6994de1e250 (patch) | |
tree | c06798f00f5411aa13841d32e99a150c790615f7 /scene/3d/physics/physics_body_3d.h | |
parent | d00734053f9cda8ade5e6c3afd86266e6df571c6 (diff) | |
download | redot-engine-4176102a5ebaf853094a19f10142d6994de1e250.tar.gz |
Store ObjectID instead of pointer for KinematicCollision owner
Diffstat (limited to 'scene/3d/physics/physics_body_3d.h')
-rw-r--r-- | scene/3d/physics/physics_body_3d.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scene/3d/physics/physics_body_3d.h b/scene/3d/physics/physics_body_3d.h index 92b3850085..71253be0b8 100644 --- a/scene/3d/physics/physics_body_3d.h +++ b/scene/3d/physics/physics_body_3d.h @@ -65,8 +65,6 @@ public: TypedArray<PhysicsBody3D> get_collision_exceptions(); void add_collision_exception_with(Node *p_node); //must be physicsbody void remove_collision_exception_with(Node *p_node); - - virtual ~PhysicsBody3D(); }; #endif // PHYSICS_BODY_3D_H |