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

◆ IsComponentInSelection()

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

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

1786 {
1787 if (pSelection.Count() == 0 || pCompName.Length() == 0)
1788 {
1789 return false;
1790 }
1791
1792 for (int i = 0; i < pSelection.Count(); ++i)
1793 {
1794 pCompName.ToLower();
1795 if (pSelection[i] && pSelection[i].GetName() == pCompName)
1796 {
1797 return true;
1798 }
1799 }
1800
1801 return false;
1802 }
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().