Changeset 9222 in orxonox.OLD
- Timestamp:
- Jul 5, 2006, 1:24:38 PM (18 years ago)
- Location:
- branches/presentation/src
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/presentation/src/defs/class_id.h
r9217 r9222 192 192 CL_BRAKING_WALL = 0X00000317, 193 193 CL_AIMING_SYSTEM = 0x00000318, 194 CL_GATE = 0x00000319, 194 195 195 196 // Playables -
branches/presentation/src/lib/graphics/importer/md2/md2Model.h
r9142 r9222 30 30 #define MD2_VERSION 8 //!< the md2 version in the header 31 31 #define MD2_MAX_TRIANGLES 4096 //!< maximal triangles count 32 #define MD2_MAX_VERTICES 2048 //!< maximal vertices count33 #define MD2_MAX_TEXCOORDS 2048 //!< maximal tex coordinates32 #define MD2_MAX_VERTICES 3048 //!< maximal vertices count 33 #define MD2_MAX_TEXCOORDS 3048 //!< maximal tex coordinates 34 34 #define MD2_MAX_FRAMES 512 //!< maximal frames 35 35 #define MD2_MAX_SKINS 32 //!< maximal skins -
branches/presentation/src/world_entities/WorldEntities.am
r9217 r9222 7 7 world_entities/npcs/generic_npc.cc \ 8 8 world_entities/npcs/door.cc \ 9 world_entities/npcs/gate.cc \ 9 10 world_entities/npcs/repair_station.cc \ 10 11 world_entities/npcs/attractor_mine.cc \ -
branches/presentation/src/world_entities/creatures/fps_player.cc
r9221 r9222 170 170 this->damageTicker = 0.0f; 171 171 172 toList( OM_PLAYERS );172 // toList( OM_PLAYERS ); 173 173 } 174 174 … … 289 289 290 290 //dealing damage 291 291 292 292 if ( State::isOnline() && SharedNetworkData::getInstance()->isGameServer() ) 293 293 { 294 294 this->damageTicker -= time; 295 295 296 296 if ( this->damageTicker <= 0.0f && this->beFire() ) 297 297 { 298 298 this->damageTicker = 0.25; 299 299 300 300 WorldEntity * victim = aimingSystem->getNearestTarget(); 301 301 302 302 if ( victim ) 303 303 { … … 486 486 if( State::isOnline()) 487 487 toList( OM_PLAYERS ); 488 488 489 489 this->damageTicker = 0.0f; 490 490 491 491 Playable::respawn(); 492 492 }
Note: See TracChangeset
for help on using the changeset viewer.