| 137 | } |
| 138 | |
| 139 | Bp::FilterGroup::Enum ShapeSim::getBPGroup() const |
| 140 | { |
| 141 | bool isKinematic = false; |
| 142 | BodySim* bs = getBodySim(); |
| 143 | if(bs) |
| 144 | isKinematic = bs->isKinematic(); |
| 145 | |
| 146 | RigidSim& rbSim = getRbSim(); |
| 147 | return Bp::getFilterGroup(rbSim.getActorType()==PxActorType::eRIGID_STATIC, rbSim.getRigidID(), isKinematic); |
| 148 | } |
| 149 | |
| 150 | PX_FORCE_INLINE void ShapeSim::internalAddToBroadPhase() |
| 151 | { |
nothing calls this directly
no test coverage detected