| 365 | /////////////////////////////////////////////////////////////////////////////// |
| 366 | |
| 367 | void NpShape::setSimulationFilterData(const PxFilterData& data) |
| 368 | { |
| 369 | NP_WRITE_CHECK(getOwnerScene()); |
| 370 | PX_CHECK_AND_RETURN(isWritable(), "PxShape::setSimulationFilterData: shared shapes attached to actors are not writable."); |
| 371 | mShape.setSimulationFilterData(data); |
| 372 | } |
| 373 | |
| 374 | PxFilterData NpShape::getSimulationFilterData() const |
| 375 | { |
no outgoing calls
no test coverage detected