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 00033 00034 00035 00036 00037 00038 00039 00040 00041 00042 00043 00044 00045 00046 00047 00048 00049 00050 00051 00052 00053 00054 00055 00056 00057 00058 00059 00060 00061 00062 |
class UT2LoadingWeaponsArena extends UT2K3GUIPage; var UT2ArenaConfig Config; event Timer() { local int i; // Initialise weapon list. Sort based on current priority - highest priority first Controller.GetWeaponList(Config.WeaponClass, Config.WeaponDesc); for(i=0; i<Config.WeaponClass.Length; i++) { Config.WeaponCombo.AddItem( Config.WeaponClass[i].default.ItemName, None, String(Config.WeaponClass[i]) ); // If this is the currently selected one - put it in the dialog if( class'MutArena'.default.ArenaWeaponClassName == String(Config.WeaponClass[i]) ) { Config.WeaponCombo.SetText( Config.WeaponClass[i].default.ItemName ); } } Config = None; Controller.CloseMenu(); } function StartLoad(UT2ArenaConfig arena ) { Config = arena; // Give the menu a chance to render before doing anything... SetTimer(0.15); } defaultproperties { Begin Object Class=GUIButton Name=LoadWeapBackground WinLeft=0.250000 WinWidth=0.500000 WinHeight=1.000000 bBoundToParent=Wahr bScaleToParent=Wahr bAcceptsInput=Falsch bNeverFocus=Wahr OnKeyEvent=LoadWeapBackground.InternalOnKeyEvent End Object Controls(0)=GUIButton'XInterface.UT2LoadingWeaponsArena.LoadWeapBackground' Begin Object Class=GUILabel Name=LoadWeapText Caption="Loading Weapon Database" TextAlign=TXTA_Center TextColor=(B=0,G=180,R=220) TextFont="UT2HeaderFont" WinTop=0.471667 WinHeight=32.000000 End Object Controls(1)=GUILabel'XInterface.UT2LoadingWeaponsArena.LoadWeapText' WinTop=0.425000 WinHeight=0.150000 } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |