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

◆ SetActive()

void UniversalTemperatureSourceDebug::SetActive ( bool pActive)
inlineprotected

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

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

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