DayZ 1.27
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 строка 610

611 {
612 super.OnItemSelected(w, x, y, row, column, oldRow, oldColumn);
613 if (w == m_PositionsListbox)
614 {
615 if (m_InitialOpen)
616 {
617 m_InitialOpen = false;
618 return true;
619 }
620
621 vector position = GetCurrentLocationPos();
622 m_TeleportXYZ.SetText(position.ToString());
624 {
626 }
627
628 return true;
629 }
630 return false;
631 }
Icon x
Icon y
EditBoxWidget m_TeleportXYZ
Определения ScriptConsoleGeneralTab.c:27
int GetCurrentPositionIndex()
Определения ScriptConsoleGeneralTab.c:423
TextListboxWidget m_PositionsListbox
Определения ScriptConsoleGeneralTab.c:66
vector GetCurrentLocationPos()
Определения ScriptConsoleGeneralTab.c:395
bool IsCurrentPositionValid()
Определения ScriptConsoleGeneralTab.c:428
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.