Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
Base class of any sequence object that can be executed, such as SequenceAction, SequenceCondtion, etc. Copyright 1998-2008 Epic Games, Inc. All Rights Reserved.
Core.Object | +-- Engine.SequenceObject | +-- Engine.SequenceOp
Sequence, SequenceAction, SequenceCondition, SequenceEvent
Constants Summary |
---|
Inherited Contants from Core.Object |
---|
DegToRad, INDEX_NONE, MaxInt, Pi, RadToDeg |
Variables Summary | |
---|---|
int | ActivateCount |
bool | bActive |
bool | bAutoActivateOutputLinks |
bool | bLatentExecution |
array<SeqEventLink> | EventLinks |
array<SeqOpInputLink> | InputLinks |
array<SeqOpOutputLink> | OutputLinks |
int | PlayerIndex |
int | SearchTag |
array<SeqVarLink> | VariableLinks |
Inherited Variables from Engine.SequenceObject |
---|
bDeletable, bDrawFirst, bDrawLast, bOutputObjCommentToScreen, bSuppressAutoComment, DrawHeight, DrawWidth, ObjCategory, ObjClassVersion, ObjColor, ObjComment, ObjInstanceVersion, ObjName, ObjPosX, ObjPosY, ParentSequence |
Inherited Variables from Core.Object |
---|
Class, HashNext, HashOuterNext, Linker, LinkerIndex, Name, NetIndex, ObjectArchetype, ObjectFlags, ObjectInternalInteger, Outer, StateFrame, VfTableObject |
Enumerations Summary |
---|
Inherited Enumerations from Core.Object |
---|
EAxis, EInputEvent, EInterpCurveMode, EInterpMethodType, ETickingGroup |
Structures Summary | ||
---|---|---|
SeqEventLink ExpectedType, LinkedEvents, LinkDesc, DrawX, bHidden | ||
SeqOpInputLink LinkDesc, bHasImpulse, bDisabled, bDisabledPIE, LinkedOp, DrawY, bHidden, ActivateDelay | ||
SeqOpOutputInputLink LinkedOp, InputLinkIdx | ||
SeqOpOutputLink Links, LinkDesc, bHasImpulse, bDisabled, bDisabledPIE, LinkedOp, ActivateDelay, DrawY, bHidden | ||
SeqVarLink ExpectedType, LinkedVariables, LinkDesc, LinkVar, PropertyName, bWriteable, bHidden, MinVars, MaxVars, DrawX, CachedProperty |
Functions Summary | ||
---|---|---|
![]() | Activated () | |
![]() | Deactivated () | |
![]() | GetBoolVars (out array<BYTE> boolVars, ptional string inDesc) | |
![]() | Controller | GetController (Actor TheActor)) |
![]() | GetLinkedObjects (out array<SequenceObject> out_Objects, optional class<SequenceObject> ObjectType, optional bool bRecurse) | |
![]() | GetObjectVars (out array<Object> objVars, ptional string inDesc) | |
![]() | Pawn | GetPawn (Actor TheActor)) |
![]() | bool | HasLinkedOps (optional bool bConsiderInputLinks ) con) |
![]() | LinkedVariables (class<SequenceVariable> VarClass, out SequenceVariable OutVariable, optional string InDesc) | |
![]() | PopulateLinkedVariableValues () | |
![]() | PublishLinkedVariableValues () | |
![]() | Reset () |
Inherited Functions from Engine.SequenceObject |
---|
GetWorldInfo, IsValidLevelSequenceObject, IsValidUISequenceObject, ScriptLog |
Variables Detail |
---|
Number of times that this Op has had Activate called on it. Used for finding often-hit ops and optimising levels.
Is this operation currently active?
indicates whether all output links should be activated when this op has finished executing
Does this op use latent execution (can it stay active multiple updates?)
Activates this output link if bDisabled is not true
Activates this output link if bDisabled is not true
The index [into the Engine.GamePlayers array] for the player that this action is associated with. Currently only used in UI sequences.
used when searching for objects to avoid unnecessary recursion
All variables used by this operation, both input/output.
Structures Detail |
---|
var bool bHidden;};
var int DrawX;
var class<SequenceEvent> ExpectedType;
var string LinkDesc;
var array<SequenceEvent> LinkedEvents;
Represents an event linked to the operation, similar to a variable link. Necessary only since SequenceEvent does not derive from SequenceVariable. @todo native interfaces - could be avoided by using interfaces, but requires support for native interfaces
var float ActivateDelay;};
var bool bDisabled;
var bool bDisabledPIE;
var bool bHasImpulse;
var bool bHidden;
var int DrawY;
var string LinkDesc;
var SequenceOp LinkedOp;
Represents an input link for a SequenceOp, that is connected via another SequenceOp's output link.
bDisabled:Is this link disabled for debugging/testing?bDisabledPIE:Is this link disabled for PIE?bHasImpulse:Indicates whether this input is ready to provide data to this sequence operation.LinkDesc:Text description of this linkLinkedOp:Linked action that creates this input, for Sequences
Individual output link entry, for linking an output link to an input link on another operation.
InputLinkIdx:Index to LinkedOp's InputLinks array that this is linked toLinkedOp:SequenceOp this is linked to
var float ActivateDelay;};
var bool bDisabled;
var bool bDisabledPIE;
var bool bHasImpulse;
var bool bHidden;
var int DrawY;
var string LinkDesc;
var SequenceOp LinkedOp;
var array<SeqOpOutputInputLink> Links;
Actual output link for a SequenceOp, containing connection information to multiple InputLinks in other SequenceOps.
ActivateDelay:Delay applied before activating this outputbDisabled:Is this link disabled for debugging/testing?bDisabledPIE:Is this link disabled for PIE?bHasImpulse:Indicates whether this link is pending activation. If true, the SequenceOps attached to this link will be activated the next time the sequence is tickedLinkDesc:Text description of this linkLinkedOp:Linked op that creates this output, for SequencesLinks:List of actual connections for this output
var bool bHidden;};
var bool bWriteable;
var const transient Property CachedProperty;
var int DrawX;
var class<SequenceVariable> ExpectedType;
var string LinkDesc;
var array<SequenceVariable> LinkedVariables;
var Name LinkVar;
var int MaxVars;
var int MinVars;
var Name PropertyName;
Represents a variable linked to the operation for manipulation upon activation.
bHidden:Should draw this connector in Kismet.bWriteable:Is this variable written to by this op?CachedProperty:Cached property refDrawX:For drawing.ExpectedType:Class of variable that can be attached to this connector.LinkDesc:Text description of this variable's use with this opLinkedVariables:SequenceVariables that we are linked to.LinkVar:Name of the linked external variable that creates this link, for sub-SequencesMaxVars:Maximum number of variables that should be attached to this connector.MinVars:Minimum number of variables that should be attached to this connector.PropertyName:Name of the property this variable is associated with
Functions Detail |
---|
Called when this event is activated.
Called when this event is deactivated.
utility to try to get a Controller out of the given Actor (tries looking for a Pawn if necessary)
Gets all SequenceObjects that are contained by this SequenceObject.
@param out_Objects will be filled with all ops that are linked to this op via the VariableLinks, OutputLinks, or InputLinks arrays. This array is NOT cleared first.
@param ObjectType if specified, only objects of this class (or derived) will be added to the output array.
@param bRecurse if TRUE, recurse into linked ops and add their linked ops to the output array, recursively.
Returns all the objects linked via SeqVar_Object, optionally specifying the link to filter by. @fixme - localization
utility to try to get a Pawn out of the given Actor (tries looking for a Controller if necessary)
Determines whether this sequence op is linked to any other sequence ops through its variable, output, event or (optionally) its input links.
@param bConsiderInputLinks specify TRUE to check this sequence ops InputLinks array for linked ops as well
@return TRUE if this sequence op is linked to at least one other sequence op.
returns all linked variables that are of the specified class or a subclass
@param VarClass the class of variable to return
@param OutVariable (out) the returned variable for each iteration
@param InDesc (optional) if specified, only variables connected to the link with the given description are returned
@fixme - localization
Copies the values from member variables contained by this sequence op into any VariableLinks attached to that member variable.
Copies the values from all VariableLinks to the member variable [of this sequence op] associated with that VariableLink.
Defaultproperties |
---|
defaultproperties { bAutoActivateOutputLinks=True InputLinks(0)=(LinkDesc="In") OutputLinks(0)=(LinkDesc="Out") Name="Default__SequenceOp" ObjectArchetype=SequenceObject'Engine.Default__SequenceObject' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |