MCPcopy Create free account
hub / github.com/OGSR/OGSR-Engine / StopEngineParticles

Method StopEngineParticles

ogsr_engine/xrGame/CustomRocket.cpp:560–567  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

StopMethod · 0.45
SetAutoRemoveMethod · 0.45

Tested by

no test coverage detected