From Cedric Pinson and Jeremey Moles, Changes to OpenSceneGraph-osgWidget-dev branch.
Notes from Robert Osfield, Merged changes to OpenSceneGraph-osgWidget-dev r9367 (prior to my botched attempt at merged svn/trunk into the branch).
This commit is contained in:
@@ -54,9 +54,9 @@ void AnimationUpdateCallback::updateLink()
|
||||
Maybe this function should be on the manager side like
|
||||
_manager->linkItem(Bone);
|
||||
*/
|
||||
AnimationMap map = _manager->getAnimationMap();
|
||||
for (AnimationMap::iterator it = map.begin(); it != map.end(); it++)
|
||||
link(it->second.get());
|
||||
const AnimationList& animationList = _manager->getAnimationList();
|
||||
for (AnimationList::const_iterator it = animationList.begin(); it != animationList.end(); it++)
|
||||
link(it->get());
|
||||
_manager->buildTargetReference();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user