diff options
author | Mikael Hermansson <mikael@hermansson.io> | 2024-01-23 16:37:48 +0100 |
---|---|---|
committer | Mikael Hermansson <mikael@hermansson.io> | 2024-01-23 16:37:48 +0100 |
commit | a3f07ad858ae69f6837c3a55fca22c566b1523b8 (patch) | |
tree | 66a6454489469e68a5680074c4a16ec91abfbed4 /scene/3d/soft_body_3d.cpp | |
parent | 6fea273ed3df7d4be9674d35aae698731fa823ea (diff) | |
download | redot-engine-a3f07ad858ae69f6837c3a55fca22c566b1523b8.tar.gz |
Fix error when pinning soft body point without attachment
Diffstat (limited to 'scene/3d/soft_body_3d.cpp')
-rw-r--r-- | scene/3d/soft_body_3d.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/scene/3d/soft_body_3d.cpp b/scene/3d/soft_body_3d.cpp index 3f1878f30f..0aaa806ee6 100644 --- a/scene/3d/soft_body_3d.cpp +++ b/scene/3d/soft_body_3d.cpp @@ -714,9 +714,6 @@ void SoftBody3D::_update_cache_pin_points_datas() { if (!w[i].spatial_attachment_path.is_empty()) { w[i].spatial_attachment = Object::cast_to<Node3D>(get_node(w[i].spatial_attachment_path)); } - if (!w[i].spatial_attachment) { - ERR_PRINT("Node3D node not defined in the pinned point, this is undefined behavior for SoftBody3D!"); - } } } |