FSMStateMachineRuntimeData¶
Module: SMSystem
Inherits from FSMStateBaseRuntimeData
Public Functions¶
| Name | |
|---|---|
| FSMStateMachineRuntimeData() | |
| virtual TSharedPtr< FSMNodeRuntimeData > | Clone() const override |
Friends¶
| Name | |
|---|---|
| struct | FSMStateMachine(FSMStateMachine ) |
Public Functions Documentation¶
function FSMStateMachineRuntimeData¶
function Clone¶
Private Attributes Documentation¶
variable States¶
States contained within this FSM level.
variable Transitions¶
Transitions contained within this FSM level.
variable EntryStates¶
The default root entry point.
variable TemporaryEntryStates¶
Entry states that are temporary and used for loading purposes.
variable ActiveStates¶
In most cases this should be of size 0 or 1. Greater than 1 implies the sm is configured for multiple active states. Array container needed for exact order when adding parallel states. O(n) operations should be acceptable for average number of active states and only on state changes.
variable StateNameMap¶
All contained states, mapped by their name.
variable ProcessingStates¶
Keeps track of states currently processing for the given FSM scope. Helps with possible infinite recursion when using multiple states that can re-enter each other.
variable IsReferencedByStateMachine¶
The state machine referencing this state machine, if any.
variable TimeSpentWaitingForUpdate¶
Current time spent waiting for an update.
variable bWaitingForTransitionUpdate¶
Is currently waiting for an update.
variable bCanEvaluateTransitions¶
Can this instance even evaluate transitions.
variable bCanTakeTransitions¶
Once evaluated can this instance take the transition.
variable bHasReachedEndStateForRun¶
True if the state machine has reached an end state at least once and is reset on node initialize.