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

◆ SetNextRightActive()

override void SlotsContainer::SetNextRightActive ( )
inlineprotected

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

94 {
95 Unfocus();
96
97 int index = m_FocusedColumn + 1;
98 for (int i = 0; i < GetColumnCount(); i++ )
99 {
100 if (index >= GetColumnCount())
101 {
102 index = 0;
103 }
104 SlotsIcon icon = m_Icons[index];
105 if (icon.IsVisible())
106 {
107 m_FocusedColumn = index;
108 break;
109 }
110 index++;
111 }
112
113 UpdateIcon();
114 }
override void Unfocus()
Определения SlotsContainer.c:166
ref array< ref SlotsIcon > m_Icons
Определения SlotsContainer.c:3
void UpdateIcon()
Определения SlotsContainer.c:139
override bool IsVisible()
Определения SlotsIcon.c:129

Перекрестные ссылки SlotsIcon::IsVisible(), m_Icons, Unfocus() и UpdateIcon().