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

◆ FindChildByID()

Widget UIScriptedMenu::FindChildByID ( Widget wid,
int user_id )
inlineprotected

Finds immediate child widget with a corresponding userID.

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

412 {
413 Widget ret = wid.GetChildren();
414 while (ret)
415 {
416 if (ret.GetUserID() == user_id)
417 {
418 return ret;
419 }
420 ret = ret.GetSibling();
421 }
422 return ret;
423 }
WorkspaceWidget Widget
Defined in code.

Используется в ComposeData() и UpdateTabContent().