KF2-Server-Extension/ServerExt/Classes/KFGUI_Page.uc

23 lines
603 B
Ucode
Raw Normal View History

2017-10-20 02:00:49 +00:00
Class KFGUI_Page extends KFGUI_MultiComponent
abstract;
var() byte FrameOpacity; // Transperancy of the frame.
var() bool bPersistant, // Reuse the same menu object throughout the level.
bUnique, // If calling OpenMenu multiple times with same menu class, only open one instance of it.
bAlwaysTop, // This menu should stay always on top.
bOnlyThisFocus; // Only this menu should stay focused.
var bool bWindowFocused; // This page is currently focused.
function DrawMenu()
{
Owner.CurrentStyle.RenderWindow(Self);
}
defaultproperties
{
bUnique=true
bPersistant=true
FrameOpacity=220
2023-05-14 02:49:12 +00:00
}