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

◆ ShowUnconsciousScreen()

void ManBase::ShowUnconsciousScreen ( bool show)
inlineprivate

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

7181 {
7182 #ifndef NO_GUI
7183 if (show)
7184 {
7185 GetGame().GetUIManager().ScreenFadeIn(0, "You are Unconscious", FadeColors.BLACK, FadeColors.WHITE);
7186 PrintString("Fade in");
7187 }
7188 else
7189 {
7191 PrintString("Fade out");
7192 }
7193 #endif
7194 }
proto native UIManager GetUIManager()
proto native void ScreenFadeOut(float duration)
proto native void ScreenFadeIn(float duration, string text, int backgroundColor, int textColor)
proto native CGame GetGame()
void PrintString(string s)
Helper for printing out string expression. Example: PrintString("Hello " + var);.
Определения EnScript.c:345

Перекрестные ссылки GetGame(), CGame::GetUIManager(), PrintString(), UIManager::ScreenFadeIn() и UIManager::ScreenFadeOut().