Changeset 10542 in orxonox.OLD for trunk/src/world_entities/mount_point.cc
- Timestamp:
- Jan 31, 2007, 5:15:54 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/mount_point.cc
r10540 r10542 140 140 if( this->_mount != NULL) 141 141 { 142 PRINTF(0)("Got detailed informations\n");142 // PRINTF(0)("Got detailed informations\n"); 143 143 this->_mount->loadParams( root); 144 144 145 145 if( this->_mount->isA(ParticleSystem::staticClassID())) 146 146 { 147 PRINTF(0)("got particle system. attaching it to mp\n");147 // PRINTF(0)("got particle system. attaching it to mp\n"); 148 148 dynamic_cast<ParticleSystem*>(this->_mount)->attachEmmittersTo(this, Vector(0,0,0), 149 149 this->getRelDir()*Quaternion(M_PI, Vector(0,1,0))); … … 177 177 if( obj->isA( WorldEntity::staticClassID())) 178 178 { 179 PRINTF(0)("Mount Point created a %s\n", obj->getCName());179 // PRINTF(0)("Mount Point created a %s\n", obj->getCName()); 180 180 // cast down the object to WE 181 181 this->_mount = dynamic_cast<WorldEntity*>(obj); … … 190 190 else if( obj->isA( WeaponSlot::staticClassID())) 191 191 { 192 PRINTF(0)("=========+>we got a weapon slot\n");192 // PRINTF(0)("=========+>we got a weapon slot\n"); 193 193 194 194 // cast down the object to WE
Note: See TracChangeset
for help on using the changeset viewer.