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

◆ SetNextLeftActive()

override void SlotsContainer::SetNextLeftActive ( )
inlineprotected

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

117 {
118 Unfocus();
119
120 int index = m_FocusedColumn - 1;
121 for (int i = 0; i < GetColumnCount(); i++ )
122 {
123 if (index < 0)
124 {
125 index = GetColumnCount() - 1;
126 }
127 SlotsIcon icon = m_Icons[index];
128 if (icon.IsVisible())
129 {
130 m_FocusedColumn = index;
131 break;
132 }
133 index--;
134 }
135
136 UpdateIcon();
137 }
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().