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

◆ GetParameterEx()

float Particle::GetParameterEx ( int emitter,
int parameter )
inlineprivate

Get the value of a parameter of an emitor in the particle.

Аргументы
emitterint The emitor to get the value from
parameterint The parameter to get the value from (enum EmitorParam)
Возвращает
float The value

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

654 {
655 if (!m_ParticleEffect)
656 return 0;
657
658 float value;
659 GetParticleParm(m_ParticleEffect, emitter, parameter, value);
660 return value;
661 }
Object m_ParticleEffect
The child object which contains the actual particle.
Определения Particle.c:50
proto void GetParticleParm(notnull IEntity ent, int emitor, EmitorParam parameter, out void value)

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