Changeset 8929 in orxonox.OLD for branches/terrain/src/world_entities
- Timestamp:
- Jun 29, 2006, 11:45:59 PM (18 years ago)
- Location:
- branches/terrain/src/world_entities
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/terrain/src/world_entities/playable.cc
r8490 r8929 67 67 68 68 this->subscribeReaction(CREngine::CR_PHYSICS_GROUND_WALK, CL_BSP_ENTITY); 69 69 this->subscribeReaction(CREngine::CR_PHYSICS_GROUND_WALK, CL_TERRAIN ); 70 70 registerVar( new SynchronizeableInt( &score, &score, "score" ) ); 71 71 registerVar( new SynchronizeableBool( &bFire, &bFire, "bFire", PERMISSION_OWNER)); -
branches/terrain/src/world_entities/terrain_entity.cc
r8748 r8929 101 101 { 102 102 this->setClassID( CL_TERRAIN, "TerrainEntity"); 103 this->toList(OM_ENVIRON _NOTICK);103 this->toList(OM_ENVIRON); 104 104 this->toReflectionList(); 105 105 … … 200 200 201 201 202 202 void TerrainEntity::tick( float _dt ) { if ( terrain ) terrain->tick( _dt ); } 203 203 204 204 void TerrainEntity::draw () const -
branches/terrain/src/world_entities/terrain_entity.h
r8741 r8929 47 47 void getAltitude( Vector& _position, Vector& _normal ); 48 48 virtual void draw() const; 49 49 virtual void tick( float _dt ); 50 50 public: 51 51 -
branches/terrain/src/world_entities/world_entity.cc
r8490 r8929 427 427 return false; 428 428 429 429 430 // get a collision event 430 431 CollisionEvent* c = CREngine::getInstance()->popCollisionEventObject();
Note: See TracChangeset
for help on using the changeset viewer.