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

◆ SetRequestActive()

void SetRequestActive ( PPERequesterBase request,
bool active )
protected

Marks requester as 'active'. Currently indistinguiishable from 'updating' requester, can potentially be used for intermittently updated requesters.

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

196 {
197 int found = m_ExistingPostprocessRequests.Find(request);
198 if ( active && found == -1 )
199 {
200 m_ExistingPostprocessRequests.Insert(request);
201 }
202 else if ( !active && found > -1 ) //should always be found in this case, redundant?
203 {
204 //RemoveActiveRequestFromMaterials(request);
205
206 m_ExistingPostprocessRequests.Remove(found);
207 }
208 }
ref array< ref PPERequesterBase > m_ExistingPostprocessRequests
Определения PPEManager.c:61

Перекрестные ссылки m_ExistingPostprocessRequests.