Changeset 8341 in orxonox.OLD for branches/bsp_model/src/world_entities/space_ships
- Timestamp:
- Jun 13, 2006, 12:00:01 PM (18 years ago)
- Location:
- branches/bsp_model/src/world_entities/space_ships
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/bsp_model/src/world_entities/space_ships/collision_probe.cc
r8338 r8341 45 45 { 46 46 this->init(); 47 47 48 if (root != NULL) 48 49 this->loadParams(root); 49 50 50 } 51 51 … … 66 66 this->loadMD2Texture("maps/dr_freak.pcx"); 67 67 this->loadModel("models/dr_freak.md2"); 68 69 this->localVelocity = Vector(0,-4,0); 68 70 } 69 71 … … 97 99 if( likely(this->getModel(0) != NULL)) 98 100 ((MD2Model*)this->getModel(0))->tick(time); 101 102 this->shiftCoor(this->localVelocity * time); 99 103 } 104 100 105 101 106 /** -
branches/bsp_model/src/world_entities/space_ships/collision_probe.h
r8338 r8341 9 9 #include "playable.h" 10 10 11 class Vector; 12 11 #include "vector.h" 13 12 14 13 class CollisionProbe : public Playable … … 52 51 int controlVelocityY; 53 52 53 Vector localVelocity; //!< velocity this entity flights with 54 54 55 55 };
Note: See TracChangeset
for help on using the changeset viewer.