diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-11-20 18:56:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-20 18:56:05 +0100 |
commit | 48049b8d9e3830ddea5c6844997d928871c16d27 (patch) | |
tree | 76787002fd429e99232af03b2c8d38674f4bdc62 /scene/3d | |
parent | 50eb039acfaa5f615223868d91c475b4bf70e125 (diff) | |
parent | a655de89e3abc14baff7a95deb85fe4daed7361c (diff) |
Merge pull request #43713 from akien-mga/doc-node-internal-processing
doc: Warn about using Node internal processing
Diffstat (limited to 'scene/3d')
-rw-r--r-- | scene/3d/soft_body_3d.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/soft_body_3d.cpp b/scene/3d/soft_body_3d.cpp index 132c35771b..e633b1eb4a 100644 --- a/scene/3d/soft_body_3d.cpp +++ b/scene/3d/soft_body_3d.cpp @@ -725,7 +725,7 @@ void SoftBody3D::_update_cache_pin_points_datas() { 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, Softbody undefined behaviour!"); + ERR_PRINT("Node3D node not defined in the pinned point, this is undefined behavior for SoftBody3D!"); } } } |