Changeset 10739 in orxonox.OLD for branches/presentation/src/world_entities/npcs
- Timestamp:
- Jun 20, 2007, 7:47:40 PM (18 years ago)
- Location:
- branches/presentation/src/world_entities/npcs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/presentation/src/world_entities/npcs/actionbox_enemy.cc
r10734 r10739 115 115 LoadParam(root, "agility", this, ActionboxEnemy, setAgility); 116 116 LoadParam(root, "acceleration", this, ActionboxEnemy, setAcceleration); 117 LoadParam(root, "active", this, ActionboxEnemy, setActive); 117 118 } 118 119 119 120 void ActionboxEnemy::tick( float dt ) 120 121 { 122 // printf("ABEGROUP: %d\n", this->getOMListNumber()); 123 121 124 if ( escaped ) 122 125 { … … 375 378 toList( OM_DEAD ); 376 379 } 380 -
branches/presentation/src/world_entities/npcs/actionbox_enemy.h
r10727 r10739 36 36 void setMaxSpeed( float f ){ this->maxSpeed = f; } 37 37 void setAgility( float f ){ this->agility = f; } 38 void setActive( bool b ){ this->isActive = b; } 38 39 39 40 Quaternion myDir;
Note: See TracChangeset
for help on using the changeset viewer.