summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Catania <info@andreacatania.com>2019-04-10 07:50:09 +0200
committerGitHub <noreply@github.com>2019-04-10 07:50:09 +0200
commitf65fde73dab73f9ba3c9f856785db251134ef1cc (patch)
tree508e5e6c528dbb19658564862290df18842db3fc
parent5772f60f960ee8c396574f0c6f94def18bb210c7 (diff)
Added No bone set state in the IK
The problem is that initially the root bone was not set, and you didn't know that because the "no set" state was missing. Now I've added it. https://github.com/godotengine/godot-docs/issues/2333
-rw-r--r--scene/animation/skeleton_ik.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/animation/skeleton_ik.cpp b/scene/animation/skeleton_ik.cpp
index 88fb2d5bfc..4da3e6ee28 100644
--- a/scene/animation/skeleton_ik.cpp
+++ b/scene/animation/skeleton_ik.cpp
@@ -335,7 +335,7 @@ void SkeletonIK::_validate_property(PropertyInfo &property) const {
if (skeleton) {
- String names;
+ String names("--,");
for (int i = 0; i < skeleton->get_bone_count(); i++) {
if (i > 0)
names += ",";