Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8697 in orxonox.OLD for branches/terrain/src/world_entities


Ignore:
Timestamp:
Jun 21, 2006, 11:45:20 PM (19 years ago)
Author:
patrick
Message:

merged the terrain with the new trunk (MARK TERRAIN)

Location:
branches/terrain
Files:
2 deleted
3 edited
3 copied

Legend:

Unmodified
Added
Removed
  • branches/terrain/src/world_entities/WorldEntities.am

    r8490 r8697  
    88                world_entities/skysphere.cc \
    99                world_entities/skybox.cc \
    10                 world_entities/terrain.cc \
     10                world_entities/terrain_entity.cc \
    1111                world_entities/satellite.cc \
    1212                world_entities/movie_entity.cc \
     
    6464                skysphere.h \
    6565                skybox.h \
    66                 terrain.h \
     66                terrain_entity.h \
    6767                satellite.h \
    6868                movie_entity.h \
  • branches/terrain/src/world_entities/camera.cc

    r7868 r8697  
    3434  this->subscribeEvent(ES_GAME, KeyMapper::PEV_VIEW5);
    3535
    36   this->setFovy(90);
     36  this->setFovy(60.0);
    3737  this->setAspectRatio(1.2f);
    38   this->setClipRegion(.1, 2000);
     38  this->setClipRegion( .1, 40.0f );
    3939
    4040  this->setViewMode(Camera::ViewNormal);
     
    8383{
    8484  this->nearClip = nearClip;
    85   this->farClip = farClip;
     85  this->farClip = 400.0f;//farClip;
    8686}
    8787
  • branches/terrain/src/world_entities/skybox.cc

    r8037 r8697  
    230230//   glPushAttrib(GL_LIGHTING_BIT);
    231231  glDisable(GL_LIGHTING);
    232 
     232  glDisable( GL_DEPTH_TEST );   
    233233  glDisable(GL_FOG);
    234234
Note: See TracChangeset for help on using the changeset viewer.