Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/itasc/FixedObject.cpp')
-rw-r--r--intern/itasc/FixedObject.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/intern/itasc/FixedObject.cpp b/intern/itasc/FixedObject.cpp
index 9dc4d69878a..2a1e66f9c6f 100644
--- a/intern/itasc/FixedObject.cpp
+++ b/intern/itasc/FixedObject.cpp
@@ -53,12 +53,13 @@ int FixedObject::addEndEffector(const std::string& name)
return -1;
}
-void FixedObject::finalize()
+bool FixedObject::finalize()
{
if (m_finalized)
- return;
+ return true;
initialize(0, m_nframe);
m_finalized = true;
+ return true;
}
const Frame& FixedObject::getPose(const unsigned int frameIndex)