| 175 | } |
| 176 | |
| 177 | void BlastFamily::processActorDestroyed(ExtPxFamily&, ExtPxActor& actor) |
| 178 | { |
| 179 | m_totalVisibleChunkCount -= actor.getChunkCount(); |
| 180 | m_physXController.notifyRigidDynamicDestroyed(&actor.getPhysXActor()); |
| 181 | |
| 182 | onActorDestroyed(actor); |
| 183 | |
| 184 | m_actors.erase(m_actors.find(&actor)); |
| 185 | } |
| 186 | |
| 187 | /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
| 188 | // Data Helpers |
no test coverage detected