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

◆ KillAllOverheatingParticles()

void InventoryItem::KillAllOverheatingParticles ( )
inlineprivate

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

656 {
658 {
659 for (int i = m_OverheatingParticles.Count(); i > 0; i--)
660 {
661 int id = i - 1;
662 OverheatingParticle OP = m_OverheatingParticles.Get(id);
663
664 if (OP)
665 {
666 Particle p = OP.GetParticle();
667
668 if (p)
669 {
670 p.Stop();
671 }
672
673 delete OP;
674 }
675 }
676
679 }
680 }
ref array< ref OverheatingParticle > m_OverheatingParticles
Определения ItemBase.c:113
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().