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

◆ RemoveTextWS()

static void Debug::RemoveTextWS ( out DebugTextWorldSpace text)
inlinestaticprivate

См. определение в файле 3_Game/DayZ/tools/Debug.c строка 152

153 {
154 if (!text)
155 return;
156
157 int nDebugTextsWS = m_DebugTextsWS.Count();
158 for (int i = 0; i < nDebugTextsWS; ++i)
159 {
160 DebugTextWorldSpace foundText = m_DebugTextsWS.Get(i);
161
162 if (foundText && foundText == text)
163 {
164 foundText = null;
165 m_DebugTextsWS.Remove(i);
166 text = null;
167 return;
168 }
169 }
170 }
static ref array< ref DebugTextWorldSpace > m_DebugTextsWS
Определения 3_Game/DayZ/tools/Debug.c:26

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

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