changed PHY importer to load capsules, not cylinders

git-svn-id: svn://anubis/anaglym/trunk@169 99a6e188-d820-4881-8870-2d33a10e2619
This commit is contained in:
Josh Holtrop 2009-11-14 21:49:27 +00:00
parent 5bb04ca7f2
commit e824f6f40f

View File

@ -1145,9 +1145,9 @@ void Engine::Object::loadPhy(const FileLoader::Path & path)
{
m_ode_object->addSphere(args);
}
else if (type == "cylinder")
else if (type == "capsule")
{
m_ode_object->addCylinder(args);
m_ode_object->addCapsule(args);
}
else if (type == "plane")
{