Changeset 3769 in orxonox.OLD for orxonox/branches/textEngine/src/story_entities
- Timestamp:
- Apr 9, 2005, 10:32:18 PM (20 years ago)
- Location:
- orxonox/branches/textEngine/src/story_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/textEngine/src/story_entities/world.cc
r3766 r3769 32 32 #include "terrain.h" 33 33 #include "light.h" 34 #include "text_engine.h" 34 35 35 36 #include "track_manager.h" … … 39 40 #include "glmenu_imagescreen.h" 40 41 #include "list.h" 41 42 43 42 44 43 using namespace std; … … 350 349 trackManager->condition(2, LEFTRIGHT, this->localPlayer); 351 350 this->glmis->step(); 351 this->testText = TextEngine::getInstance()->createText("fonts/earth.ttf"); 352 352 353 353 break; … … 589 589 skySphere->draw(); 590 590 591 TextEngine::getInstance()->draw(); 591 592 lightMan->draw(); // must be at the end of the drawing procedure, otherwise Light cannot be handled as PNodes // 592 593 } -
orxonox/branches/textEngine/src/story_entities/world.h
r3766 r3769 23 23 class Terrain; 24 24 class GarbageCollector; 25 class Text; 25 26 26 27 //! The game world Interface … … 94 95 bool bPause; //!< pause mode 95 96 97 Text* testText; //!< A text to Test the TextEngine; 96 98 GLMenuImageScreen* glmis; //!< The Level-Loader Display 97 99
Note: See TracChangeset
for help on using the changeset viewer.