DayZ 1.29
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ KillAllOverheatingParticles()

void InventoryItem::KillAllOverheatingParticles ( )
inlineprivate

См. определение в файле ItemBase.c строка 665

666 {
668 {
669 for (int i = m_OverheatingParticles.Count(); i > 0; i--)
670 {
671 int id = i - 1;
672 OverheatingParticle OP = m_OverheatingParticles.Get(id);
673
674 if (OP)
675 {
676 Particle p = OP.GetParticle();
677
678 if (p)
679 {
680 p.Stop();
681 }
682
683 delete OP;
684 }
685 }
686
689 }
690 }
ref array< ref OverheatingParticle > m_OverheatingParticles
Определения ItemBase.c:119
Particle GetParticle()
Определения WeaponParticles.c:397
void Stop()
Legacy function for backwards compatibility with 1.14 and below.
Определения Particle.c:266

Перекрестные ссылки OverheatingParticle::GetParticle(), m_OverheatingParticles и Particle::Stop().