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

◆ Tick()

void array< TimerBase >::Tick ( float timeslice)
inlineprivate

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

408 {
409 if (m_processing) return;
410
411 m_processing = true;
412
413 if (Count())
414 {
415 for (int i = Count() - 1; i >= 0; i--)
416 {
417 Get(i).Tick(timeslice);
418 }
419 }
420
421 m_processing = false;
422 }
override float Get()
Определения PlayerStatBase.c:134
@ Count
Определения RandomGeneratorSyncManager.c:8
bool m_processing
Определения tools.c:384
Result for an object found in CGame.IsBoxCollidingGeometryProxy.

Перекрестные ссылки Count, Get() и m_processing.