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

◆ CleanVisualEffects()

void CleanVisualEffects ( )
protected

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

1195 {
1196 for (int valve = 0; valve < VALVES_COUNT; ++valve)
1197 {
1198 if (m_ValveParticles[valve])
1199 {
1200 m_ValveParticles[valve].StopParticle();
1201 m_ValveParticles[valve] = null;
1202 }
1203 }
1204
1205 for (int pipe = 0; pipe < m_PipeBrokenParticles.Count(); ++pipe)
1206 {
1207 if (m_PipeBrokenParticles[pipe])
1208 {
1209 m_PipeBrokenParticles[pipe].StopParticle();
1210 m_PipeBrokenParticles[pipe] = null;
1211 }
1212 }
1213 }
ref ParticleSourceArray m_PipeBrokenParticles
ref ParticleSourceArray m_ValveParticles
const int VALVES_COUNT

Перекрестные ссылки m_PipeBrokenParticles, m_ValveParticles и VALVES_COUNT.

Используется в ~Land_Underground_WaterReservoir().