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

◆ OnItemSelected()

override bool ScriptConsoleGeneralTab::OnItemSelected ( Widget w,
int x,
int y,
int row,
int column,
int oldRow,
int oldColumn )
inlineprotected

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

626 {
627 super.OnItemSelected(w, x, y, row, column, oldRow, oldColumn);
628 if (w == m_PositionsListbox)
629 {
630 if (m_InitialOpen)
631 {
632 m_InitialOpen = false;
633 return true;
634 }
635
636 vector position = GetCurrentLocationPos();
637 m_TeleportXYZ.SetText(position.ToString());
639 {
641 }
642
643 return true;
644 }
645 return false;
646 }
Icon x
Icon y
EditBoxWidget m_TeleportXYZ
Определения ScriptConsoleGeneralTab.c:27
int GetCurrentPositionIndex()
Определения ScriptConsoleGeneralTab.c:431
TextListboxWidget m_PositionsListbox
Определения ScriptConsoleGeneralTab.c:66
vector GetCurrentLocationPos()
Определения ScriptConsoleGeneralTab.c:403
bool IsCurrentPositionValid()
Определения ScriptConsoleGeneralTab.c:436
PluginConfigDebugProfile m_ConfigDebugProfile
Определения ScriptConsoleTabBase.c:11
proto string ToString(bool beautify=true)
Vector to string.

Перекрестные ссылки GetCurrentLocationPos(), GetCurrentPositionIndex(), IsCurrentPositionValid(), ScriptConsoleTabBase::m_ConfigDebugProfile, m_InitialOpen, m_PositionsListbox, m_TeleportXYZ, vector::ToString(), x и y.