We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent e297ddf commit 5c3081dCopy full SHA for 5c3081d
scene/3d/soft_dynamic_body_3d.cpp
@@ -165,7 +165,7 @@ void SoftDynamicBody3D::_get_property_list(List<PropertyInfo> *p_list) const {
165
p_list->push_back(PropertyInfo(Variant::PACKED_INT32_ARRAY, PNAME("pinned_points")));
166
167
for (int i = 0; i < pinned_points_indices_size; ++i) {
168
- const String prefix = vformat("%s/%d", PNAME("attachments"), i);
+ const String prefix = vformat("%s/%d/", PNAME("attachments"), i);
169
p_list->push_back(PropertyInfo(Variant::INT, prefix + PNAME("point_index")));
170
p_list->push_back(PropertyInfo(Variant::NODE_PATH, prefix + PNAME("spatial_attachment_path")));
171
p_list->push_back(PropertyInfo(Variant::VECTOR3, prefix + PNAME("offset")));
0 commit comments