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 |
// ============================================================================ // JBAction_WaitOnlyForTimer // Copyright (c) 2007 by Wormbo <wormbo@online.de> // $Id: JBAction_WaitOnlyForTimer.uc,v 1.1 2007-05-12 11:25:45 wormbo Exp $ // // Waits exclusively for timer and unlike its superclass NOT for triggering. // ============================================================================ class JBAction_WaitOnlyForTimer extends Action_WaitForTimer; // ============================================================================ // CompleteWhenTriggered // // Does NOT react to triggering. (Why should it anyway?) // ============================================================================ function bool CompleteWhenTriggered() { return false; } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |