Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
class SequenceEvent Sequence event is a representation of any event that is used to instigate a sequence. Copyright 1998-2008 Epic Games, Inc. All Rights Reserved.
Core.Object | +-- Engine.SequenceObject | +-- Engine.SequenceOp | +-- Engine.SequenceEvent
SeqEvent_AISeeEnemy, SeqEvent_Console, SeqEvent_ConstraintBroken, SeqEvent_Death, SeqEvent_DemoInput, SeqEvent_Destroyed, SeqEvent_GetInventory, SeqEvent_LevelBeginning, SeqEvent_LevelLoaded, SeqEvent_LevelReset, SeqEvent_LevelStartup, SeqEvent_LOS, SeqEvent_Mover, SeqEvent_PickupStatusChange, SeqEvent_PlayerSpawned, SeqEvent_ProjectileLanded, SeqEvent_RemoteEvent, SeqEvent_RigidBodyCollision, SeqEvent_SeeDeath, SeqEvent_SequenceActivated, SeqEvent_TakeDamage, SeqEvent_Touch, SeqEvent_Used, UIEvent, UTSeqEvent_CountdownNodeSucceeded, UTSeqEvent_FlagEvent, UTSeqEvent_GameEnded, UTSeqEvent_MinedOre, UTSeqEvent_ObjectiveCompleted, UTSeqEvent_OnslaughtNodeEvent, UTSeqEvent_PowerCoreDestructionEffect, UTSeqEvent_SkipCinematic, UTSeqEvent_TurretSpawn, UTSeqEvent_TurretStatusChanged, UTSeqEvent_VehicleFactory
Variables Summary | |
---|---|
float | ActivationTime |
bool | bRegistered |
Actor | Instigator |
int | MaxWidth |
Actor | Originator |
array<QueuedActivationInfo> | QueuedActivations |
int | TriggerCount |
SequenceEvent | |
bool | bClientSideOnly |
bool | bEnabled |
bool | bPlayerOnly |
int | MaxTriggerCount |
Byte | Priority |
float | ReTriggerDelay |
Inherited Variables from Engine.SequenceOp |
---|
ActivateCount, bActive, bAutoActivateOutputLinks, bLatentExecution, EventLinks, InputLinks, OutputLinks, PlayerIndex, SearchTag, VariableLinks |
Inherited Variables from Engine.SequenceObject |
---|
bDeletable, bDrawFirst, bDrawLast, bOutputObjCommentToScreen, bSuppressAutoComment, DrawHeight, DrawWidth, ObjCategory, ObjClassVersion, ObjColor, ObjComment, ObjInstanceVersion, ObjName, ObjPosX, ObjPosY, ParentSequence |
Structures Summary | ||
---|---|---|
QueuedActivationInfo InOriginator, InInstigator, ActivateIndices, bPushTop |
Inherited Structures from Engine.SequenceOp |
---|
SeqEventLink, SeqOpInputLink, SeqOpOutputInputLink, SeqOpOutputLink, SeqVarLink |
Functions Summary | ||
---|---|---|
![]() | bool | CheckActivate (Actor inOriginator, Actor inInstigator, optional bool bTest, optional const out array<int> ActivateIndices, optional bool bPushTop) |
![]() | RegisterEvent () | |
![]() | Reset ())) | |
![]() | Toggled ())) |
Inherited Functions from Engine.SequenceOp |
---|
Activated, Deactivated, GetBoolVars, GetController, GetLinkedObjects, GetObjectVars, GetPawn, HasLinkedOps, LinkedVariables, PopulateLinkedVariableValues, PublishLinkedVariableValues, Reset |
Inherited Functions from Engine.SequenceObject |
---|
GetWorldInfo, IsValidLevelSequenceObject, IsValidUISequenceObject, ScriptLog |
Variables Detail |
---|
Last time this event was activated at
Has this event been successfully register?
Instigator of the event activation, or the actor that caused the event to be activated. Can vary depending on the type of event.
Editor only, max width of the title bar?
Originator of this event, set at editor time. Usually the actor that this event is attached to.
Number of times this event has been activated
if true, this event (and therefore all linked actions) is triggered on the client instead of the server use for events that don't affect gameplay @note: direct references to level placed actors used by client side events/actions require that the actors have bStatic or bNoDelete set; otherwise the reference will be NULL on the client
Is this event currently enabled?
Require this event to be activated by a player?
How many times can this event be activated, 0 for infinite
Used by event managers (such as DialogueManager) to help filter out events that occur at same time
Delay between allowed activations
Structures Detail |
---|
var array<int> ActivateIndices;};
var bool bPushTop;
var Actor InInstigator;
var Actor InOriginator;
Matches the ::ActivateEvent parms, for storing multiple activations per frame
Functions Detail |
---|
Checks if this event could be activated, and if bTest == false then the event will be activated with the specified actor as the instigator.
@param inOriginator - actor to use as the originator
@param inInstigator - actor to use as the instigator
@param bTest - if true, then the event will not actually be activated, only tested for success
@param ActivateIndices - array of indices of output links to activate if the event is activated. If unspecified, the default is to activate all of them.
@param bPushTop - if true and the event is activated, adds it to the top of the stack (meaning it will be executed first), rather than the bottom
@return true if this event can be activated, or was activate if !bTest
Called when the sequence that contains this event is initialized (@see USequence::InitializeSequence). For events attached to actors, this will occur at level startup (@see USequence::BeginPlay())
Called once this event is toggled via SeqAct_Toggle.
Defaultproperties |
---|
defaultproperties { MaxTriggerCount=1 bEnabled=True bPlayerOnly=True VariableLinks(0)=(ExpectedType=Class'Engine.SeqVar_Object',LinkDesc="Instigator",bWriteable=True,MinVars=1,MaxVars=255) ObjColor=(B=0,G=0,R=255,A=255) Name="Default__SequenceEvent" ObjectArchetype=SequenceOp'Engine.Default__SequenceOp' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |