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

◆ SetRequestUpdating()

void SetRequestUpdating ( PPERequesterBase request,
bool active )
protected

Marks requester as 'updating' and to be processed on manager update.

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

212 {
214 {
215 Debug.Log("PPEManager | SetRequestUpdating | !m_UpdatingRequests");
216 return;
217 }
218
219 int idx = m_UpdatingRequests.Find(request);
220
221 if ( active && idx == -1 )
222 {
223 m_UpdatingRequests.Insert(request);
224 }
225 else if ( !active && idx > -1 )
226 {
227 m_UpdatingRequests.Remove(idx);
228 }
229 }
ref array< ref PPERequesterBase > m_UpdatingRequests
Определения PPEManager.c:62
static void Log(string message=LOG_DEFAULT, string plugin=LOG_DEFAULT, string author=LOG_DEFAULT, string label=LOG_DEFAULT, string entity=LOG_DEFAULT)
Prints debug message with normal prio.
Определения Debug.c:122
Определения Debug.c:2

Перекрестные ссылки Debug::Log() и m_UpdatingRequests.