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

◆ GetCurrentParticleID()

int EffectParticle::GetCurrentParticleID ( )
inlineprotected

Gets the current id of the managed Particle.

Возвращает
int Particle ID registered in ParticleList

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

339 {
340 Particle p = GetParticle();
341 if (p)
342 {
343 return p.GetParticleID();
344 }
345 else
346 {
347 return ParticleList.INVALID;
348 }
349 }
Particle GetParticle()
Gets the main particle which this Effect is managing.
Определения EffectParticle.c:162
int GetParticleID()
Gets particle id.
Определения Particle.c:297

Перекрестные ссылки GetParticle(), Particle::GetParticleID() и ParticleList::INVALID.