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

◆ IsComponentInSelection()

static bool IsComponentInSelection ( array< Selection > pSelection,
string pCompName )
staticprotected

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

1799 {
1800 if (pSelection.Count() == 0 || pCompName.Length() == 0)
1801 {
1802 return false;
1803 }
1804
1805 for (int i = 0; i < pSelection.Count(); ++i)
1806 {
1807 pCompName.ToLower();
1808 if (pSelection[i] && pSelection[i].GetName() == pCompName)
1809 {
1810 return true;
1811 }
1812 }
1813
1814 return false;
1815 }
proto native int Length()
Returns length of string.
proto int ToLower()
Changes string to lowercase. Returns length.
proto native owned string GetName()
Test name getter. Strictly for UI porposes!
Определения SyncedValue.c:119

Перекрестные ссылки GetName(), string::Length() и string::ToLower().