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

◆ RegisterTransitionTime()

static void DayZPlayerCameras::RegisterTransitionTime ( int pFrom,
int pTo,
float pTime,
bool pTwoWay )
inlinestaticprivate

static function to set time to table

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

139 {
140 int key = (pFrom * 65536) + pTo;
141 m_TransitionTimes.Set(key, pTime);
142 if (pTwoWay)
143 {
144 RegisterTransitionTime(pTo, pFrom, pTime, false);
145 }
146 }
static ref map< int, float > m_TransitionTimes
Определения DayZPlayerCameras.c:32
static void RegisterTransitionTime(int pFrom, int pTo, float pTime, bool pTwoWay)
static function to set time to table
Определения DayZPlayerCameras.c:138

Перекрестные ссылки m_TransitionTimes и RegisterTransitionTime().

Используется в RegisterCameras() и RegisterTransitionTime().