Skip to content

Commit

Permalink
Fix property hint.
Browse files Browse the repository at this point in the history
  • Loading branch information
Relintai committed Apr 4, 2024
1 parent a2d07ca commit d699df2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/skeleton_3d/nodes/bone_attachment.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ void BoneAttachment::_get_property_list(List<PropertyInfo> *p_list) const {

p_list->push_back(PropertyInfo(Variant::BOOL, "use_external_skeleton", PROPERTY_HINT_NONE, ""));
if (use_external_skeleton) {
p_list->push_back(PropertyInfo(Variant::NODE_PATH, "external_skeleton", PROPERTY_HINT_NODE_PATH_VALID_TYPES, "Skeleton3D"));
p_list->push_back(PropertyInfo(Variant::NODE_PATH, "external_skeleton", PROPERTY_HINT_NODE_PATH_VALID_TYPES, "Skeleton"));
}
}

Expand Down

0 comments on commit d699df2

Please sign in to comment.