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

◆ SetActive()

void UniversalTemperatureSourceDebug::SetActive ( bool pActive)
inlineprotected

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

166 {
167 if (pActive)
168 m_Lambda.OnUTSActivate();
169 else
170 m_Lambda.OnUTSDeactivate();
171
172 if (m_Settings && m_Settings.m_ManualUpdate)
173 {
174 m_Active = pActive;
175 return;
176 }
177
178 if (pActive && !m_Timer.IsRunning())
179 {
180 m_Timer.Continue();
181 }
182 else
183 {
184 m_Timer.Stop();
185 }
186 }
ref UniversalTemperatureSourceTimer m_Timer
Определения UniversalTemperatureSource.c:71
UniversalTemperatureSourceSettings m_Settings
Определения UniversalTemperatureSource.c:72
ref UniversalTemperatureSourceLambdaBase m_Lambda
Определения UniversalTemperatureSource.c:74

Перекрестные ссылки m_Lambda, m_Settings и m_Timer.