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

◆ StopOverheatingParticles()

static void InventoryItem::StopOverheatingParticles ( ItemBase weapon,
string ammoType,
ItemBase muzzle_owner,
ItemBase suppressor,
string config_to_search )
inlinestaticprotected

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

4330 {
4331 int id = muzzle_owner.GetMuzzleID();
4332 array<ref WeaponParticlesOnOverheating> WPOOH_array = weapon.m_OnOverheatingEffect.Get(id);
4333
4334 if (WPOOH_array)
4335 {
4336 for (int i = 0; i < WPOOH_array.Count(); i++)
4337 {
4338 WeaponParticlesOnOverheating WPOOH = WPOOH_array.Get(i);
4339
4340 if (WPOOH)
4341 {
4342 WPOOH.OnDeactivate(weapon, ammoType, muzzle_owner, suppressor, config_to_search);
4343 }
4344 }
4345 }
4346 }

Перекрестные ссылки ItemBase().