Struct FThinkTickFunction
- struct FThinkTickFunction : public FTickFunction
-
A struct that represents the think portion of the tick function for the agent.
Public Functions
- FThinkTickFunction(IInferenceAgent *Agent)
-
Constructor with agent parameter.
- Parameters:
-
Agent – The agent associated with this tick function.
- 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.