Cleanup in the new code (remove model when we're done)

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/branches/irrlicht@4249 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria
2009-12-06 01:41:02 +00:00
parent a2357958f9
commit 8256e46ed3

View File

@@ -77,7 +77,6 @@ void FeatureUnlockedCutScene::init()
m_key->getMaterial(n).setFlag(EMF_GOURAUD_SHADING , true);
// FIXME : doesn't work
m_key->getMaterial(n).MaterialType = video::EMT_SPHERE_MAP;
}
@@ -144,6 +143,12 @@ void FeatureUnlockedCutScene::tearDown()
m_chest = NULL;
m_chest_top = NULL;
m_key = NULL;
if (m_root_gift_node != NULL)
{
irr_driver->removeNode(m_root_gift_node);
m_root_gift_node = NULL;
}
}
void FeatureUnlockedCutScene::onUpdate(float dt, irr::video::IVideoDriver* driver)