Changeset 8183 in orxonox.OLD for branches/cr
- Timestamp:
- Jun 7, 2006, 11:46:00 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/cr/src/world_entities/world_entity.cc
r8182 r8183 369 369 /** 370 370 * registers a new collision event to this world entity 371 * @param collisionEvent the event 371 * @param entityA entity of the collision 372 * @param entityB entity of the collision 373 * @param bvA colliding bounding volume of entityA 374 * @param bvB colliding bounding volume of entityA 372 375 */ 373 376 bool WorldEntity::registerCollision(WorldEntity* entityA, WorldEntity* entityB, BoundingVolume* bvA, BoundingVolume* bvB) … … 377 380 return false; 378 381 379 // createa collision event382 // get a collision event 380 383 CollisionEvent* c = CREngine::getInstance()->popCollisionEventObject(); 381 384 assert(c != NULL); // if this should fail: we got not enough precached CollisionEvents: alter value in cr_defs.h … … 400 403 return false; 401 404 402 // createa collision event405 // get a collision event 403 406 CollisionEvent* c = CREngine::getInstance()->popCollisionEventObject(); 404 407 assert(c != NULL); // if this should fail: we got not enough precached CollisionEvents: alter value in cr_defs.h
Note: See TracChangeset
for help on using the changeset viewer.