summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDuroxxigar <young9003@gmail.com>2021-09-27 18:53:56 -0400
committerDuroxxigar <young9003@gmail.com>2021-09-27 18:53:56 -0400
commit3bcf03c40fbfbf85f61ef330989d824f81888569 (patch)
tree370ae2082fbf4e3bc5c9b047928f1817a9e5a168
parent84faf3954417c0ee58df79c0d2cc09309825878a (diff)
Fixed typo in bone attachment warning
-rw-r--r--scene/3d/bone_attachment_3d.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/bone_attachment_3d.cpp b/scene/3d/bone_attachment_3d.cpp
index c34c150145..afd11482e3 100644
--- a/scene/3d/bone_attachment_3d.cpp
+++ b/scene/3d/bone_attachment_3d.cpp
@@ -110,7 +110,7 @@ TypedArray<String> BoneAttachment3D::get_configuration_warnings() const {
} else {
Skeleton3D *parent = Object::cast_to<Skeleton3D>(get_parent());
if (!parent) {
- warnings.append(TTR("Parent node is not a Skeleton3D node! Please use an extenral Skeleton3D if you intend to use the BoneAttachment3D without it being a child of a Skeleton3D node."));
+ warnings.append(TTR("Parent node is not a Skeleton3D node! Please use an external Skeleton3D if you intend to use the BoneAttachment3D without it being a child of a Skeleton3D node."));
}
}