The three virtues of a programmer: Laziness, Impatience, and Hubris. – Larry Wall

UE3:SeqCond_SwitchClass (UT3)

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search
UT3 Object >> SequenceObject >> SequenceOp >> SequenceCondition >> SeqCond_SwitchBase >> SeqCond_SwitchClass
Package: 
Engine
This class in other games:
UDK

Copyright 1998-2007 Epic Games, Inc. All Rights Reserved.

Properties[edit]

Property group 'SeqCond_SwitchClass'[edit]

ClassArray[edit]

Type: array<SwitchClassInfo>


Default value:

Member Value
ClassName 'Default'

Default values[edit]

Property Value
ObjName "Switch Class"
VariableLinks[0]
Member Value
ExpectedType Class'Engine.SeqVar_Object'
LinkDesc "Object"
MaxVars 255
MinVars 1

Structs[edit]

SwitchClassInfo[edit]

Modifiers: native

Stores class name to compare for each output link and whether it should fall through to next node

name ClassName 
byte bFallThru 

Events[edit]

InsertValueEntry[edit]

event InsertValueEntry (int InsertIndex)

Overrides: SeqCond_SwitchBase.InsertValueEntry

Insert an empty element into this switch's value array at the specified index.

IsFallThruEnabled[edit]

event bool IsFallThruEnabled (int ValueIndex)

Overrides: SeqCond_SwitchBase.IsFallThruEnabled

Returns whether fall through is enabled for the specified case value.

RemoveValueEntry[edit]

event RemoveValueEntry (int RemoveIndex)

Overrides: SeqCond_SwitchBase.RemoveValueEntry

Remove an element from this switch's value array at the specified index.

VerifyDefaultCaseValue[edit]

event VerifyDefaultCaseValue ()

Overrides: SeqCond_SwitchBase.VerifyDefaultCaseValue

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.