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