| 1009 | } |
| 1010 | |
| 1011 | void NpScene::removeArticulation(PxArticulationBase& articulation, bool wakeOnLostTouch) |
| 1012 | { |
| 1013 | PX_PROFILE_ZONE("API.removeArticulation", getContextId()); |
| 1014 | NP_WRITE_CHECK(this); |
| 1015 | |
| 1016 | if (removeFromSceneCheck(this, articulation.getScene(), "PxScene::removeArticulation(): Articulation")) |
| 1017 | { |
| 1018 | removeArticulationInternal(articulation, wakeOnLostTouch, true); |
| 1019 | } |
| 1020 | } |
| 1021 | |
| 1022 | void NpScene::removeArticulationInternal(PxArticulationBase& npa, bool wakeOnLostTouch, bool removeFromAggregate) |
| 1023 | { |
no test coverage detected