Struct FActTickFunction
- struct FActTickFunction : public FTickFunction
-
A struct that represents the act portion of the tick function for the agent.
Public Functions
- FActTickFunction(IInferenceAgent *Agent, bool bStopAfterCurrentTick = false)
-
Constructor with agent and stop flag parameters.
- Parameters:
-
-
Agent – [in] The agent associated with this tick function.
-
bStopAfterCurrentTick – [in] Whether to stop after the current tick.
-
- void ExecuteTick(float DeltaTime, ELevelTick TickType, ENamedThreads::Type CurrentThread, const FGraphEventRef &MyCompletionGraphEvent) override
-
Execute the tick function.
- Parameters:
-
-
DeltaTime – [in] The time since the last tick.
-
TickType – [in] The type of tick.
-
CurrentThread – [in] The current thread.
-
MyCompletionGraphEvent – [in] The completion graph event.
-
Public Members
- TScriptInterface<IInferenceAgent> Agent
-
The agent associated with this tick function.