Changeset 9140 in orxonox.OLD for branches/terrain/src/world_entities
- Timestamp:
- Jul 4, 2006, 3:06:00 PM (19 years ago)
- Location:
- branches/terrain/src/world_entities
- Files:
-
- 2 deleted
- 5 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/terrain/src/world_entities/WorldEntities.am
r9061 r9140 12 12 world_entities/skybox.cc \ 13 13 world_entities/skydome.cc \ 14 world_entities/terrain .cc \14 world_entities/terrain_entity.cc \ 15 15 world_entities/satellite.cc \ 16 16 world_entities/movie_entity.cc \ … … 77 77 skybox.h \ 78 78 skydome.h \ 79 terrain .h \79 terrain_entity.h \ 80 80 satellite.h \ 81 81 movie_entity.h \ -
branches/terrain/src/world_entities/camera.cc
r7868 r9140 34 34 this->subscribeEvent(ES_GAME, KeyMapper::PEV_VIEW5); 35 35 36 this->setFovy(90 );36 this->setFovy(90.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); -
branches/terrain/src/world_entities/playable.cc
r9110 r9140 69 69 //subscribe to collision reaction 70 70 this->subscribeReaction(CREngine::CR_PHYSICS_GROUND_WALK, CL_BSP_ENTITY); 71 71 this->subscribeReaction(CREngine::CR_PHYSICS_GROUND_WALK, CL_TERRAIN ); 72 72 registerVar( new SynchronizeableInt( &score, &score, "score" ) ); 73 73 registerVar( new SynchronizeableBool( &bFire, &bFire, "bFire", PERMISSION_OWNER)); -
branches/terrain/src/world_entities/skybox.cc
r8037 r9140 230 230 // glPushAttrib(GL_LIGHTING_BIT); 231 231 glDisable(GL_LIGHTING); 232 232 glDisable( GL_DEPTH_TEST ); 233 233 glDisable(GL_FOG); 234 234 -
branches/terrain/src/world_entities/world_entity.cc
r9110 r9140 442 442 return false; 443 443 444 444 445 // get a collision event 445 446 CollisionEvent* c = CREngine::getInstance()->popCollisionEventObject();
Note: See TracChangeset
for help on using the changeset viewer.