Changeset 10314 in orxonox.OLD for trunk/src/story_entities/game_world.cc
- Timestamp:
- Jan 24, 2007, 12:45:39 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/story_entities/game_world.cc
r10013 r10314 11 11 ### File Specific: 12 12 main-programmer: Patrick Boenzli 13 main-programmer: Benjamin Grauer 13 14 co-programmer: Christian Meyer 14 co-programmer: Benjamin Grauer 15 15 16 */ 16 17 … … 73 74 SHELL_COMMAND(togglePNodeVisibility, GameWorld, togglePNodeVisibility); 74 75 SHELL_COMMAND(showBVLevel, GameWorld, toggleBVVisibility); 76 SHELL_COMMAND(showMountPoints, GameWorld, toggleMPVisibility); 75 77 76 78 … … 88 90 this->showBV = false; 89 91 this->showBVLevel = 3; 92 this->showMPV = false; 90 93 91 94 this->dataXML = NULL; … … 541 544 ObjectManager::EntityList::const_iterator entity; 542 545 for (entity = drawList.begin(); entity != drawList.end(); entity++) 546 { 543 547 if ((*entity)->isVisible()) 544 548 (*entity)->draw(); 549 550 if( unlikely( this->showMPV)) 551 (*entity)->debugDrawMountPoints(); 552 } 545 553 } 546 554 … … 666 674 } 667 675 676 668 677 if( unlikely(this->showPNodes)) 669 678 PNode::getNullParent()->debugDraw(0);
Note: See TracChangeset
for help on using the changeset viewer.