Changeset 10006 in orxonox.OLD for branches/coll_rect/src/world_entities/world_entity.h
- Timestamp:
- Dec 4, 2006, 2:24:40 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/coll_rect/src/world_entities/world_entity.h
r9988 r10006 92 92 93 93 /** @param worldEntity the world entity to be checked @returns true if there is a collisionreaction registered for the worldEntity */ 94 inline bool isReactive( const WorldEntity& worldEntity) const { return this->_collisionFilter .isReactive() || (this->_collisionFilter(worldEntity)); }94 inline bool isReactive( const WorldEntity& worldEntity) const { return this->_collisionFilter(worldEntity); } 95 95 /** @param worldEntity the world entity to be checked @param type special reaction type @returns true if collision reaction reg. */ 96 96 inline bool isReactive( const WorldEntity& worldEntity, const CoRe::CREngine::ReactionType& type) const 97 { return this->_collisionFilter .isReactive() || (this->_collisionFilter(worldEntity, type)); }97 { return this->_collisionFilter(worldEntity, type); } 98 98 99 99
Note: See TracChangeset
for help on using the changeset viewer.