Changeset 8952 in orxonox.OLD for branches/single_player_map/src/world_entities/npcs
- Timestamp:
- Jun 30, 2006, 2:04:53 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/single_player_map/src/world_entities/npcs/generic_npc.cc
r8951 r8952 224 224 void GenericNPC::walkTo(float x, float y, float z) 225 225 { 226 printf("Walking to %f, %f, %f \n",x,y,z);226 //printf("Walking to %f, %f, %f \n",x,y,z); 227 227 this->walkTo(Vector(x,y,z)); 228 228 … … 337 337 else 338 338 { 339 this->shiftCoor(dir.getNormalized() * currentAnimation.speed dt);339 this->shiftCoor(dir.getNormalized() * currentAnimation.speed * dt); 340 340 } 341 341 }
Note: See TracChangeset
for help on using the changeset viewer.