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

◆ Debug()

void array< Class T >::Debug ( )
inlineprivate

Print all elements in array.

Возвращает
void
my_array.Debug();
>> "One"
>> "Two"
>> "Three"

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

524 {
525 Print(string.Format("Array count: %1", Count()));
526 for (int i = 0; i < Count(); i++)
527 {
528 T item = Get(i);
529 Print(string.Format("[%1] => %2", i, item));
530 }
531 }
override float Get()
Определения PlayerStatBase.c:134
Result for an object found in CGame.IsBoxCollidingGeometryProxy.
proto void Print(void var)
Prints content of variable to console/log.
proto native int Count()

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