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

◆ GetTimePerClass()

static proto void EnProfiler::GetTimePerClass ( notnull out array< ref EnProfilerTimeClassPair > outArr,
int count = int.MAX )
staticprivate

Obtain [SD] for Time Per Class.

Аргументы
outArrarray<ref EnProfilerTimeClassPair> Array sorted by time consumed by a class
countint The maximum amount of entries wanted
// In this example the array will be filled with the 20 most time intensive classes
// If there are less than 20 classes which consumed time, it will output that number of classes instead
EnProfiler.GetTimePerClass(timePerClass, 20);
// In this example the array will be filled with all classes sorted by time
EnProfiler.GetTimePerClass(timePerClass2);
Set of methods for accessing script profiling data.
Определения EnProfiler.c:73
Result for an object found in CGame.IsBoxCollidingGeometryProxy.
static proto void GetTimePerClass(notnull out array< ref EnProfilerTimeClassPair > outArr, int count=int.MAX)
Obtain [SD] for Time Per Class.

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

Используется в EnProfilerTests::TestModule().