Changeset 3756 in orxonox.OLD for orxonox/branches/convention/src/story_entities/world.cc
- Timestamp:
- Apr 8, 2005, 12:54:23 AM (20 years ago)
- Location:
- orxonox/branches/convention
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/convention/src/story_entities/world.cc
r3752 r3756 41 41 #include "glmenu_imagescreen.h" 42 42 #include "fontset.h" 43 #include "test_mat.h" 43 44 #include "list.h" 44 45 … … 179 180 this->debugWorldNr = worldID; 180 181 this->entities = new tList<WorldEntity>(); 182 183 this->testMat = NULL; 181 184 } 182 185 … … 367 370 case DEBUG_WORLD_1: 368 371 { 372 this->testMat = new TestMat(); 369 373 lightMan->setPosition(.0, .0, .0); 370 374 lightMan->setAttenuation(1.0, .01, 0.0); … … 406 410 this->nullParent = NullParent::getInstance (); 407 411 this->nullParent->setName ("NullParent"); 408 412 409 413 // !\todo old track-system has to be removed 410 414 … … 738 742 } 739 743 delete iterator; 740 744 745 if (this->testMat) 746 this->testMat->draw(); 747 741 748 glCallList (objectList); 742 749 //! \todo skysphere is a WorldEntity and should be inside of the world-entity-list.
Note: See TracChangeset
for help on using the changeset viewer.