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

◆ ReadFromCyclicBuffer()

float NotifierBase::ReadFromCyclicBuffer ( int index)
inlineprivate

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

81 {
82 int indx = m_TendencyBufferWriteIterator + index;
83 if ( indx >= m_TendencyBufferSize)
84 {
85 indx = indx - m_TendencyBufferSize;
86 }
87
88 return m_TendencyBuffer[indx];
89 }
int m_TendencyBufferWriteIterator
Определения NotifierBase.c:16
float m_TendencyBuffer[TENDENCY_BUFFER_SIZE]
Определения NotifierBase.c:15
int m_TendencyBufferSize
Определения NotifierBase.c:9

Перекрестные ссылки m_TendencyBuffer, m_TendencyBufferSize и m_TendencyBufferWriteIterator.

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