Skip to content

UPipelinedStepper::FPipelinedStepperFrame

Struct UPipelinedStepper::FPipelinedStepperFrame

  • Defined in File PipelinedStepper.h

Nested Relationships

This struct is a nested type of Class UPipelinedStepper.

struct FPipelinedStepperFrame

Frame data structure for pipeline stages.

Renamed to avoid collision with UE’s internal FFrame used in UFunction thunks. Contains observations, actions, and synchronization flags for one pipeline stage.


Public Members

SymbolDetails
ObservationsObservations collected from agents for this frame.
ActionsActions computed by the policy for this frame.
bActionsReadyFlag indicating actions are ready to be applied.
bThinkInFlightFlag indicating inference is currently in progress.
DebugDispatchIdDebug ID for tracking dispatch order.

Observations

TArray<TInstancedStruct<FPoint>> Observations

Observations collected from agents for this frame.


Actions

TArray<TInstancedStruct<FPoint>> Actions

Actions computed by the policy for this frame.


bActionsReady

std::atomic<bool> bActionsReady = false

Flag indicating actions are ready to be applied.


bThinkInFlight

std::atomic<bool> bThinkInFlight = false

Flag indicating inference is currently in progress.


DebugDispatchId

uint64 DebugDispatchId = 0

Debug ID for tracking dispatch order.