Overview | Package | Class | Source | Class tree | Glossary | 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 00032 |
//============================================================================== // Created on: 08/15/2003 // Base class for all UT2004 GUIPages // // Written by Ron Prestenback // © 2003, Epic Games, Inc. All Rights Reserved //============================================================================== class UT2K4GUIPage extends GUIPage abstract; var Sound PopInSound, SlideInSound, FadeInSound, BeepSound; defaultproperties { WinLeft=0.0 WinTop=0.375 WinWidth=1.0 WinHeight=0.50 bCaptureInput=True // By default, UT2K4GUIPage does not render anything behind the top-most menu // To change this, set bRenderWorld = True bRequire640x480=True bRenderWorld=False PopInSound=sound'2K4MenuSounds.MainMenu.OptionIn' SlideInSound=sound'2K4MenuSounds.MainMenu.GraphSlide' FadeInSound=sound'2K4MenuSounds.MainMenu.CharFade' BeepSound=Sound'MenuSounds.select3' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |