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

◆ GetParameter()

void Particle::GetParameter ( int emitter,
int parameter,
out float value )
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)
valuefloat The value

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

640 {
641 if (!m_ParticleEffect)
642 return;
643
644 GetParticleParm(m_ParticleEffect, emitter, parameter, value);
645 }
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.