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 |
//============================================================================== // Special tab for ladder matches // Player can't switch teams, can't become spectator // // Written by Michiel Hendriks // (c) 2003, Epic Games, Inc. All Rights Reserved //============================================================================== class UT2K4Tab_SinglePlayerLoginControls extends UT2K4Tab_PlayerLoginControls; function InitComponent(GUIController MyController, GUIComponent MyOwner) { Super.InitComponent(MyController, MyOwner); b_Team.Hide(); } function bool ButtonClicked(GUIComponent Sender) { if ((Sender == i_JoinRed) || (Sender == i_JoinBlue)) return true; return Super.ButtonClicked(Sender); } function SetupGroups() { RemoveComponent(b_Spec); Super.SetupGroups(); } defaultproperties { } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |