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

◆ TickNotifiers()

void TickNotifiers ( )

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

106 {
107 int currentTime = GetGame().GetTime();
108
109 foreach (NotifierBase notifier: m_Notifiers)
110 {
111 if (notifier.IsActive() && notifier.IsTimeToTick(currentTime))
112 notifier.OnTick(currentTime);
113 }
114
115 }
ref array< ref NotifierBase > m_Notifiers
Определения NotifiersManager.c:29
proto int GetTime()
returns mission time in milliseconds
Определения NotifierBase.c:2
proto native CGame GetGame()

Перекрестные ссылки GetGame(), CGame::GetTime() и m_Notifiers.

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