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

◆ Continue()

override void MissionBase::Continue ( )
inlineprotected

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

1298 {
1299 UIScriptedMenu menu = g_Game.GetUIManager().GetMenu();
1300 if (menu)
1301 {
1302 int menu_id = menu.GetID();
1303 if (!IsPaused() || (menu_id != MENU_INGAME && menu_id != MENU_LOGOUT && menu_id != MENU_RESPAWN_DIALOGUE) || (m_Logout && m_Logout.layoutRoot.IsVisible()))
1304 {
1305 return;
1306 }
1307 }
1308
1309 RemoveActiveInputExcludes({"menu"},true);
1310 RemoveActiveInputRestriction(EInputRestrictors.INVENTORY);
1312 }
DayZGame g_Game
Определения DayZGame.c:3942
UIManager GetUIManager()
Определения missionGameplay.c:181
override void RemoveActiveInputExcludes(array< string > excludes, bool bForceSupress=false)
Removes one or more exclude groups and refreshes excludes.
Определения missionGameplay.c:911
ref LogoutMenu m_Logout
Определения missionGameplay.c:16
override void RemoveActiveInputRestriction(int restrictor)
Removes one restriction (specific behaviour oudside regular excludes, defined below)
Определения missionGameplay.c:942
override bool IsPaused()
Определения missionGameplay.c:1257
bool CloseMenu(int id)
Close menu with specific ID (see MenuID)
Определения UIManager.c:117
const int MENU_LOGOUT
Определения 3_Game/DayZ/constants.c:195
const int MENU_RESPAWN_DIALOGUE
Определения 3_Game/DayZ/constants.c:209
const int MENU_INGAME
Определения 3_Game/DayZ/constants.c:178

Перекрестные ссылки g_Game, GetUIManager(), IsPaused(), m_Logout, MENU_INGAME, MENU_LOGOUT, MENU_RESPAWN_DIALOGUE, RemoveActiveInputExcludes() и RemoveActiveInputRestriction().