Changeset 3803 in orxonox.OLD for orxonox/trunk/src/story_entities
- Timestamp:
- Apr 13, 2005, 7:38:52 PM (20 years ago)
- Location:
- orxonox/trunk/src/story_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/story_entities/world.cc
r3801 r3803 30 30 #include "environment.h" 31 31 #include "skysphere.h" 32 #include "skybox.h" 32 33 #include "satellite.h" 33 34 #include "terrain.h" … … 327 328 328 329 // Create SkySphere 329 this->skySphere = new Skysphere("../data/pictures/sky-replace.jpg"); 330 this->skySphere->setName("SkySphere"); 331 this->localCamera->addChild(this->skySphere); 332 this->spawn(this->skySphere); 330 // this->skySphere = new Skysphere("../data/pictures/sky-replace.jpg"); 331 // this->skySphere->setName("SkySphere"); 332 // this->localCamera->addChild(this->skySphere); 333 // this->spawn(this->skySphere); 334 skyBox = new SkyBox(); 335 this->spawn(skyBox); 333 336 334 337 /*monitor progress*/ -
orxonox/trunk/src/story_entities/world.h
r3795 r3803 20 20 class GLMenuImageScreen; 21 21 class Skysphere; 22 class SkyBox; 22 23 class LightManager; 23 24 class Terrain; … … 109 110 Camera* localCamera; //!< The current Camera 110 111 Skysphere* skySphere; //!< The Environmental Heaven of orxonox \todo insert this to environment insted 112 SkyBox* skyBox; 111 113 LightManager* lightMan; //!< The Lights of the Level 112 114 Terrain* terrain; //!< The Terrain of the World.
Note: See TracChangeset
for help on using the changeset viewer.