Update scaled agent half extents in navigator (bug #4763)

pull/541/head
elsid 6 years ago
parent 43b39e8418
commit 2e063d59ce
No known key found for this signature in database
GPG Key ID: B845CB9FEE18AB40

@ -1328,9 +1328,15 @@ namespace MWWorld
void World::scaleObject (const Ptr& ptr, float scale)
{
if (mPhysics->getActor(ptr))
mNavigator->removeAgent(getPathfindingHalfExtents(ptr));
ptr.getCellRef().setScale(scale);
mWorldScene->updateObjectScale(ptr);
if (mPhysics->getActor(ptr))
mNavigator->addAgent(getPathfindingHalfExtents(ptr));
}
void World::rotateObjectImp (const Ptr& ptr, const osg::Vec3f& rot, bool adjust)

Loading…
Cancel
Save