diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-09-28 07:41:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-28 07:41:36 +0200 |
commit | 4735a0359c769b15f22e7b05c348490638547ecc (patch) | |
tree | 32e20e10d062284f7108669b147f95dda0d929b5 /scene | |
parent | 8abd46096ae52025d54bf58a782a6c057b3254f6 (diff) | |
parent | 3bcf03c40fbfbf85f61ef330989d824f81888569 (diff) | |
download | redot-engine-4735a0359c769b15f22e7b05c348490638547ecc.tar.gz |
Merge pull request #53153 from Duroxxigar/fix-bone-attachment-typo
Diffstat (limited to 'scene')
-rw-r--r-- | scene/3d/bone_attachment_3d.cpp | 2 |
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.")); } } |