Changeset 8697 in orxonox.OLD for branches/terrain/src/world_entities
- Timestamp:
- Jun 21, 2006, 11:45:20 PM (19 years ago)
- Location:
- branches/terrain
- Files:
-
- 2 deleted
- 3 edited
- 3 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/terrain/src/world_entities/WorldEntities.am
r8490 r8697 8 8 world_entities/skysphere.cc \ 9 9 world_entities/skybox.cc \ 10 world_entities/terrain .cc \10 world_entities/terrain_entity.cc \ 11 11 world_entities/satellite.cc \ 12 12 world_entities/movie_entity.cc \ … … 64 64 skysphere.h \ 65 65 skybox.h \ 66 terrain .h \66 terrain_entity.h \ 67 67 satellite.h \ 68 68 movie_entity.h \ -
branches/terrain/src/world_entities/camera.cc
r7868 r8697 34 34 this->subscribeEvent(ES_GAME, KeyMapper::PEV_VIEW5); 35 35 36 this->setFovy( 90);36 this->setFovy(60.0); 37 37 this->setAspectRatio(1.2f); 38 this->setClipRegion( .1, 2000);38 this->setClipRegion( .1, 40.0f ); 39 39 40 40 this->setViewMode(Camera::ViewNormal); … … 83 83 { 84 84 this->nearClip = nearClip; 85 this->farClip = farClip;85 this->farClip = 400.0f;//farClip; 86 86 } 87 87 -
branches/terrain/src/world_entities/skybox.cc
r8037 r8697 230 230 // glPushAttrib(GL_LIGHTING_BIT); 231 231 glDisable(GL_LIGHTING); 232 232 glDisable( GL_DEPTH_TEST ); 233 233 glDisable(GL_FOG); 234 234
Note: See TracChangeset
for help on using the changeset viewer.