Navigation
API > API/Plugins > API/Plugins/AnimNext > API/Plugins/AnimNext/Graph
References
| Module | AnimNext |
| Header | /Engine/Plugins/Experimental/AnimNext/Source/AnimNext/Public/Graph/GraphInstanceComponent.h |
| Include | #include "Graph/GraphInstanceComponent.h" |
Syntax
struct FGraphInstanceComponent
Remarks
A graph instance component is attached and owned by a graph instance. It persists as long as it is needed.
Constructors
| Type | Name | Description | |
|---|---|---|---|
FGraphInstanceComponent
(
FAnimNextGraphInstance& InOwnerInstance |
Destructors
| Type | Name | Description | |
|---|---|---|---|
Functions
| Type | Name | Description | |
|---|---|---|---|
| FName | |||
| FAnimNextGraphInstance & | Returns the owning graph instance this component lives on. | ||
| const FAnimNextGraphInstance & | Returns the owning graph instance this component lives on. | ||
| void | OnTraitEvent
(
FExecutionContext& Context, |
Called before PreUpdate with input events and before PostUpdate with output events. | |
| void | PostUpdate
(
FExecutionContext& Context |
Called after the update traversal completes, after every node has been visited The execution context provided is bound to the graph root and can be bound to anything the component wishes | |
| void | PreUpdate
(
FExecutionContext& Context |
Called before the update traversal begins, before any node has been visited Note that PreUpdate won't be called if a component is created during the update traversal until the next update The execution context provided is bound to the graph root and can be bound to anything the component wishes | |
| FName |