Overview | Package | Class | Source | Class tree | Glossary | Deus Ex UnrealScript Documentation |
previous class next class | frames no frames |
00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 |
//============================================================================= // TextLogWindow. //============================================================================= class TextLogWindow extends TextWindow native noexport; // ---------------------------------------------------------------------- // Variables // Log entry timeout var float textTimeout; // Time before a log entry disappears // Internal info var native private DynamicArray lines; // Individual log entries var private bool bTooTall; // TRUE if the log won't fit in the window var private bool bPaused; // TRUE if the log is currently paused // ---------------------------------------------------------------------- // Intrinsics native(1570) final function AddLog(string newText, color linecol); native(1571) final function ClearLog(); native(1572) final function SetTextTimeout(float newTimeout); native(1573) final function PauseLog(bool bNewPauseState); defaultproperties { } |
Overview | Package | Class | Source | Class tree | Glossary | Deus Ex UnrealScript Documentation |
previous class next class | frames no frames |