Changeset 9996 for code/branches/modularships/src
- Timestamp:
- Mar 9, 2014, 10:34:08 PM (11 years ago)
- Location:
- code/branches/modularships/src/orxonox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/modularships/src/orxonox/Scene.cc
r9995 r9996 373 373 bool modified = false; 374 374 if (object0->isCollisionCallbackActive()) 375 modified |= object0->customCollidesAgainst(object1, cs 0, cp);375 modified |= object0->customCollidesAgainst(object1, cs1, cp); 376 376 if (object1->isCollisionCallbackActive()) 377 modified |= object1->customCollidesAgainst(object0, cs 1, cp);377 modified |= object1->customCollidesAgainst(object0, cs0, cp); 378 378 379 379 return modified; -
code/branches/modularships/src/orxonox/worldentities/pawns/Pawn.cc
r9995 r9996 280 280 damage *= originator->getDamageMultiplier(); 281 281 282 orxout() << "damage(): Custom collision detected on CS: " << cs << endl;282 orxout() << "damage(): Custom collision detected on " << this->getRadarName() << ", CS: " << cs << endl; 283 283 284 284 if (this->getGametype() && this->getGametype()->allowPawnDamage(this, originator))
Note: See TracChangeset
for help on using the changeset viewer.