summaryrefslogtreecommitdiffstats
path: root/scene/3d/physics
diff options
context:
space:
mode:
authorjsjtxietian <jsjtxietian@outlook.com>2024-05-24 12:56:20 +0800
committerjsjtxietian <jsjtxietian@outlook.com>2024-05-24 12:56:20 +0800
commit2546dada7538355207a0f9823a9ac1e843723c45 (patch)
treea3220a8dee70df8c90eced0c0bd76b77f38e6fa2 /scene/3d/physics
parentdaa81bbb7d1c6d75d1711595604178ee62a5801d (diff)
downloadredot-engine-2546dada7538355207a0f9823a9ac1e843723c45.tar.gz
Fix null `debug_shape` being updated when `CollisionObject3D`'s transform changed
Diffstat (limited to 'scene/3d/physics')
-rw-r--r--scene/3d/physics/collision_object_3d.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/scene/3d/physics/collision_object_3d.cpp b/scene/3d/physics/collision_object_3d.cpp
index dddaf7eb4a..f11aa7012a 100644
--- a/scene/3d/physics/collision_object_3d.cpp
+++ b/scene/3d/physics/collision_object_3d.cpp
@@ -439,6 +439,9 @@ void CollisionObject3D::_on_transform_changed() {
}
const ShapeData::ShapeBase *shape_bases = shapedata.shapes.ptr();
for (int i = 0; i < shapedata.shapes.size(); i++) {
+ if (shape_bases[i].debug_shape.is_null()) {
+ continue;
+ }
RS::get_singleton()->instance_set_transform(shape_bases[i].debug_shape, debug_shape_old_transform * shapedata.xform);
}
}