Changeset 3693 in orxonox.OLD for orxonox/branches/textEngine/src/story_entities
- Timestamp:
- Mar 31, 2005, 3:16:40 AM (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
r3681 r3693 39 39 #include "glmenu_imagescreen.h" 40 40 #include "fontset.h" 41 #include "glfont.h" 41 42 #include "list.h" 42 43 … … 202 203 testFont = new FontSet(); 203 204 testFont->buildFont("../data/pictures/font.tga"); 205 tmpFont = new GLFont("Alpha Sentry.ttf", 20); 204 206 this->glmis->step(); 205 207 … … 594 596 595 597 testFont->printText(0, 0, 1, "orxonox_" PACKAGE_VERSION); 598 tmpFont->draw(); 596 599 597 600 lightMan->draw(); // must be at the end of the drawing procedure, otherwise Light cannot be handled as PNodes // -
orxonox/branches/textEngine/src/story_entities/world.h
r3681 r3693 22 22 class LightManager; 23 23 class FontSet; 24 class GLFont; 24 25 class Terrain; 25 26 class GarbageCollector; … … 96 97 97 98 FontSet* testFont; //!< A test Font. \todo fix this, so it is for real. 99 GLFont* tmpFont; //!< tmpFont \todo fix 98 100 GLMenuImageScreen* glmis; //!< The Level-Loader Display 99 101
Note: See TracChangeset
for help on using the changeset viewer.