mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 00:35:23 +00:00
Remove parts before setting the new object root
This commit is contained in:
parent
0df975a4d7
commit
0fc65db6bb
@ -1457,6 +1457,9 @@ namespace MWRender
|
||||
|
||||
PartHolder::~PartHolder()
|
||||
{
|
||||
if (mNode.get() && !mNode->getNumParents())
|
||||
std::cerr << "Warning: part has no parents " << std::endl;
|
||||
|
||||
if (mNode.get() && mNode->getNumParents())
|
||||
{
|
||||
if (mNode->getNumParents() > 1)
|
||||
|
@ -422,6 +422,8 @@ int NpcAnimation::getSlot(const osg::NodePath &path) const
|
||||
void NpcAnimation::updateNpcBase()
|
||||
{
|
||||
clearAnimSources();
|
||||
for(size_t i = 0;i < ESM::PRT_Count;i++)
|
||||
removeIndividualPart((ESM::PartReferenceType)i);
|
||||
|
||||
const MWWorld::ESMStore &store = MWBase::Environment::get().getWorld()->getStore();
|
||||
const ESM::Race *race = store.get<ESM::Race>().find(mNpc->mRace);
|
||||
@ -501,8 +503,6 @@ void NpcAnimation::updateNpcBase()
|
||||
}
|
||||
}
|
||||
|
||||
for(size_t i = 0;i < ESM::PRT_Count;i++)
|
||||
removeIndividualPart((ESM::PartReferenceType)i);
|
||||
updateParts();
|
||||
|
||||
mWeaponAnimationTime->updateStartTime();
|
||||
|
Loading…
x
Reference in New Issue
Block a user