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

◆ FindChildByID()

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

Finds immediate child widget with a corresponding userID.

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

404 {
405 Widget ret = wid.GetChildren();
406 while (ret)
407 {
408 if (ret.GetUserID() == user_id)
409 {
410 return ret;
411 }
412 ret = ret.GetSibling();
413 }
414 return ret;
415 }
WorkspaceWidget Widget
Defined in code.

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