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

◆ CleanVisualEffects()

void CleanVisualEffects ( )
protected

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

1176 {
1177 for (int valve = 0; valve < VALVES_COUNT; ++valve)
1178 {
1179 if (m_ValveParticles[valve])
1180 {
1181 m_ValveParticles[valve].StopParticle();
1182 m_ValveParticles[valve] = null;
1183 }
1184 }
1185
1186 for (int pipe = 0; pipe < m_PipeBrokenParticles.Count(); ++pipe)
1187 {
1188 if (m_PipeBrokenParticles[pipe])
1189 {
1190 m_PipeBrokenParticles[pipe].StopParticle();
1191 m_PipeBrokenParticles[pipe] = null;
1192 }
1193 }
1194 }
ref ParticleSourceArray m_PipeBrokenParticles
ref ParticleSourceArray m_ValveParticles
const int VALVES_COUNT

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

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