Changeset 7690 in orxonox.OLD for branches/water/src/story_entities
- Timestamp:
- May 18, 2006, 3:31:04 PM (18 years ago)
- Location:
- branches/water/src/story_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/water/src/story_entities/game_world.cc
r7686 r7690 33 33 #include "terrain.h" 34 34 #include "playable.h" 35 #include " mapped_water.h"35 #include "environments/mapped_water.h" 36 36 37 37 #include "light.h" … … 445 445 // clear buffer 446 446 glClear( GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT); 447 // draw world448 // this->draw();449 447 450 448 // render the reflection texture … … 479 477 MappedWater* mw; 480 478 481 if( reflectedWaters = ClassList::getList(CL_MAPPED_WATER) != NULL)479 if( (reflectedWaters = ClassList::getList(CL_MAPPED_WATER)) != NULL) 482 480 { 483 481 std::list<BaseObject*>::const_iterator it; … … 536 534 537 535 /** 538 * @brief runs through all entities calling their draw() methods539 */540 void GameWorld::draw ()541 {542 543 }544 545 /**546 536 * shows the loading screen 547 537 */ -
branches/water/src/story_entities/game_world.h
r7686 r7690 74 74 virtual void renderPassRefraction(); 75 75 virtual void renderPassAll(); 76 virtual void draw(); 76 77 77 78 78 virtual void display();
Note: See TracChangeset
for help on using the changeset viewer.