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 |
class ACTION_ThrowWeapon extends ScriptedAction; var(Action) vector WeaponVelocity; function bool InitActionFor(ScriptedController C) { if ( (C.Pawn == None) || (C.Pawn.Weapon == None) ) return false; if ( WeaponVelocity == vect(0,0,0) ) WeaponVelocity = C.Pawn.Velocity + vect(0,0,250) + 300 * vector(C.Pawn.Rotation); C.Pawn.TossWeapon(WeaponVelocity); return false; } defaultproperties { ActionString="throw weapon" } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |