1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-16 19:29:56 +00:00

Creatures now use object physics

This commit is contained in:
Jason Hooks 2012-08-09 18:09:11 -04:00
parent 083e3537b4
commit 38c2c5d480
2 changed files with 2 additions and 2 deletions

View file

@ -89,7 +89,7 @@ namespace MWClass
{
const std::string model = getModel(ptr);
if(!model.empty()){
physics.insertActorPhysics(ptr, model);
physics.insertObjectPhysics(ptr, model);
}
MWBase::Environment::get().getMechanicsManager()->addActor (ptr);
}

View file

@ -32,7 +32,7 @@ namespace Ogre {
class Root;
}
#if (BOOST_VERSION <= 104300)
#if (BOOST_VERSION <= 104500)
namespace boost {
namespace filesystem {
inline path absolute(const path& p, const path& base=current_path()) {