- Timestamp:
- Mar 31, 2005, 1:14:27 AM (20 years ago)
- Location:
- orxonox/trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/defs/debug.h
r3686 r3688 61 61 #define DEBUG_MODULE_PNODE 3 62 62 #define DEBUG_MODULE_WORLD_ENTITY 0 63 #define DEBUG_MODULE_COMMAND_NODE 363 #define DEBUG_MODULE_COMMAND_NODE 0 64 64 #define DEBUG_MODULE_GRAPHICS 0 65 65 #define DEBUG_MODULE_LOAD 0 … … 67 67 #define DEBUG_MODULE_IMPORTER 0 68 68 #define DEBUG_MODULE_TRACK_MANAGER 0 69 #define DEBUG_MODULE_GARBAGE_COLLECTOR 0 69 70 #define DEBUG_MODULE_LIGHT 0 70 71 #define DEBUG_MODULE_PLAYER 3 -
orxonox/trunk/src/garbage_collector.cc
r3685 r3688 16 16 */ 17 17 18 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_ WORLD18 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_GARBAGE_COLLECTOR 19 19 20 20 #include "garbage_collector.h" -
orxonox/trunk/src/world_entities/projectile.cc
r3686 r3688 99 99 void Projectile::tick (float time) 100 100 { 101 this->speed = this->weapon->getSpeed() * 3;101 this->speed = this->weapon->getSpeed() + 100.0; 102 102 Vector v; 103 103 v = *this->flightDirection * this->speed * time; -
orxonox/trunk/src/world_entities/test_gun.cc
r3686 r3688 96 96 pj->setAbsDir(q); 97 97 98 //printf("%f\n",this->getSpeed()); 99 98 100 pj->setFlightDirection(q); 99 101 pj->setSpeed(this->getSpeed());
Note: See TracChangeset
for help on using the changeset viewer.