1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-10 06:39:49 +00:00

Made buildStaticGeometry function

This commit is contained in:
Jason Hooks 2011-11-05 14:57:33 -04:00
parent 8edcd4d15b
commit c11b3a57c1
2 changed files with 10 additions and 1 deletions

View File

@ -93,7 +93,7 @@ void Objects::insertMesh (const MWWorld::Ptr& ptr, const std::string& mesh){
sg->addEntity(ent,insert->_getDerivedPosition(),insert->_getDerivedOrientation(),insert->_getDerivedScale());
sg->setRegionDimensions(Ogre::Vector3(100000,10000,100000));
sg->build(); //Is this the right place for building?
mRend.getScene()->destroyEntity(ent);
}
@ -159,4 +159,11 @@ void Objects::removeCell(const MWWorld::Ptr& ptr){
sg = 0;
}
}
void Objects::buildStaticGeometry(const MWWorld::Ptr& ptr){
if(mSG.find(ptr.getCell()) != mSG.end())
{
Ogre::StaticGeometry* sg = mSG[ptr.getCell()];
sg->build();
}
}

View File

@ -34,6 +34,8 @@ public:
void insertLight (const MWWorld::Ptr& ptr, float r, float g, float b, float radius);
void deleteObject (const std::string& handle);
void removeCell(const MWWorld::Ptr& ptr);
void buildStaticGeometry(const MWWorld::Ptr& ptr);
/// insert a light related to the most recent insertBegin call.