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

◆ LateInit()

void ScriptConsoleGeneralTab::LateInit ( )
inlineprotected

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

219 {
220 m_ShowOthers.SetChecked(SHOW_OTHERS);
221
223 {
224 int prevRow = m_ConfigDebugProfile.GetSpawnLocIndex();
225 if (prevRow < m_PositionsListbox.GetNumItems())
226 m_PositionsListbox.SelectRow(prevRow);
227
228 }
229 PluginRemotePlayerDebugClient plugin_remote_client = PluginRemotePlayerDebugClient.Cast(GetPluginSafe(PluginRemotePlayerDebugClient));
230 if (SHOW_OTHERS && plugin_remote_client && g_Game.GetPlayer())
231 {
232 plugin_remote_client.RequestPlayerInfo(PlayerBase.Cast(g_Game.GetPlayer()), 1);
234 }
235
236 PluginRemotePlayerDebugServer plugin_remote_server = PluginRemotePlayerDebugServer.Cast(GetPluginSafe(PluginRemotePlayerDebugServer));
237 if (plugin_remote_server)
238 {
239 SHOW_OTHERS = true;
241 m_PlayerDebugStats = plugin_remote_server.m_PlayerDebugStats;
242 }
243
244 }
DayZGame g_Game
Определения DayZGame.c:3942
PluginBase GetPluginSafe(typename plugin_type)
Определения PluginManager.c:349
TextListboxWidget m_PositionsListbox
Определения ScriptConsoleGeneralTab.c:66
static bool SHOW_OTHERS
Определения ScriptConsoleGeneralTab.c:8
bool m_UpdatePlayerPositions
Определения ScriptConsoleGeneralTab.c:22
CheckBoxWidget m_ShowOthers
Определения ScriptConsoleGeneralTab.c:53
ref array< ref RemotePlayerStatDebug > m_PlayerDebugStats
Определения ScriptConsoleGeneralTab.c:14
PluginConfigDebugProfile m_ConfigDebugProfile
Определения ScriptConsoleTabBase.c:11

Перекрестные ссылки g_Game, GetPluginSafe(), ScriptConsoleTabBase::m_ConfigDebugProfile, m_PlayerDebugStats, m_PositionsListbox, m_ShowOthers, m_UpdatePlayerPositions и SHOW_OTHERS.

Используется в ScriptConsoleGeneralTab().