| 558 | VERIFY3(m_pEngineParticles->IsLooped(), "must be a looped particle system for rocket engine: %s", *m_sEngineParticles); |
| 559 | } |
| 560 | void CCustomRocket::StopEngineParticles() |
| 561 | { |
| 562 | if (m_pEngineParticles == NULL) |
| 563 | return; |
| 564 | m_pEngineParticles->Stop(); |
| 565 | m_pEngineParticles->SetAutoRemove(true); |
| 566 | m_pEngineParticles = NULL; |
| 567 | } |
| 568 | void CCustomRocket::StartFlyParticles() |
| 569 | { |
| 570 | if (m_flyingSound._handle()) |
nothing calls this directly
no test coverage detected