| 657 | } |
| 658 | |
| 659 | void NpScene::removeActor(PxActor& actor, bool wakeOnLostTouch) |
| 660 | { |
| 661 | PX_PROFILE_ZONE("API.removeActor", getContextId()); |
| 662 | NP_WRITE_CHECK(this); |
| 663 | if (removeFromSceneCheck(this, actor.getScene(), "PxScene::removeActor(): Actor")) |
| 664 | { |
| 665 | removeActorInternal(actor, wakeOnLostTouch, true); |
| 666 | } |
| 667 | } |
| 668 | |
| 669 | void NpScene::removeActorInternal(PxActor& actor, bool wakeOnLostTouch, bool removeFromAggregate) |
| 670 | { |
no test coverage detected