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