Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
Base class for all switch condition ops which use a name value for branching. Copyright 1998-2008 Epic Games, Inc. All Rights Reserved
Core.Object | +-- Engine.SequenceObject | +-- Engine.SequenceOp | +-- Engine.SequenceCondition | +-- Engine.SeqCond_SwitchBase | +-- Engine.SeqCond_SwitchName
Variables Summary | |
---|---|
SeqCond_SwitchName | |
array<SwitchNameCase> | SupportedValues |
Structures Summary | ||
---|---|---|
SwitchNameCase NameValue, bFallThru |
Functions Summary | ||
---|---|---|
![]() | InsertValueEntry (int InsertIndex )) | |
![]() | bool | IsFallThruEnabled (int ValueIndex )) |
![]() | RemoveValueEntry (int RemoveIndex )) | |
![]() | VerifyDefaultCaseValue ())) |
Inherited Functions from Engine.SeqCond_SwitchBase |
---|
InsertValueEntry, IsFallThruEnabled, RemoveValueEntry, VerifyDefaultCaseValue |
Inherited Functions from Engine.SequenceCondition |
---|
IsValidUISequenceObject |
Variables Detail |
---|
Stores the list of values which are handled by this switch object.
Structures Detail |
---|
var(SeqCond_SwitchName) bool bFallThru;};
var(SeqCond_SwitchName) Name NameValue;
Stores class name to compare for each output link and whether it should fall through to next node
bFallThru:indicates whether control should fall through to the next case upon a matchNameValue:the value of this case statement
Functions Detail |
---|
Insert an empty element into this switch's value array at the specified index.
Returns whether fall through is enabled for the specified case value.
Remove an element from this switch's value array at the specified index.
Ensures that the last item in the value array represents the "default" item. Child classes should override this method to ensure that their value array stays synchronized with the OutputLinks array.
Defaultproperties |
---|
defaultproperties { SupportedValues(0)=(NameValue="Default") VariableLinks(0)=(ExpectedType=Class'Engine.SeqVar_Name',LinkDesc="Name Value",MinVars=1,MaxVars=255) ObjName="Switch Name" Name="Default__SeqCond_SwitchName" ObjectArchetype=SeqCond_SwitchBase'Engine.Default__SeqCond_SwitchBase' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |