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 |
class ACTION_IfCondition extends ScriptedAction; var(Action) name TriggeredConditionTag; var TriggeredCondition T; function ProceedToNextAction(ScriptedController C) { if ( (T == None) && (TriggeredConditionTag != 'None') ) ForEach C.AllActors(class'TriggeredCondition',T,TriggeredConditionTag) break; C.ActionNum += 1; if ( T == None ) { if ( C.Level.Title ~= "Robot Factory" ) { ProceedToSectionEnd(C); return; } warn("No TriggeredCondition with tag "$TriggeredConditionTag$" found, breaking "$C.SequenceScript); ProceedToSectionEnd(C); return; } if ( !T.bEnabled ) ProceedToSectionEnd(C); } function bool StartsSection() { return true; } function string GetActionString() { return ActionString@T@TriggeredConditionTag; } defaultproperties { ActionString="If condition" } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |