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 |
// ============================================================================ // JBAction_UntriggerEvent // Copyright (c) 2007 by Wormbo <wormbo@online.de> // $Id: JBAction_UntriggerEvent.uc,v 1.1 2007-05-18 16:39:04 wormbo Exp $ // // Untriggers actors matching the specified tag. // ============================================================================ class JBAction_UntriggerEvent extends ACTION_TriggerEvent; // ============================================================================ // InitActionFor // // Resets matching actors. // ============================================================================ function bool InitActionFor(ScriptedController C) { C.UntriggerEvent(Event, C.SequenceScript, C.GetInstigator()); return false; } // ============================================================================ // Default Properties // ============================================================================ defaultproperties { ActionString = "untrigger event" } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |