Navigation
API > API/Plugins > API/Plugins/MovieRenderPipelineCore > API/Plugins/MovieRenderPipelineCore/Graph
References
| Module | MovieRenderPipelineCore |
| Header | /Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineCore/Public/Graph/MovieGraphConfig.h |
| Include | #include "Graph/MovieGraphConfig.h" |
Syntax
USTRUCT&40;&41;
struct FMovieGraphEvaluationContext
Remarks
This stores short-term information needed during traversal of the graph such as disabled nodes, already visited nodes, etc. This information is discarded after traversal.
Variables
| Type | Name | Description | |
|---|---|---|---|
| TObjectPtr< UMovieGraphPin > | PinBeingFollowed | The pin that is currently being followed in the traversal process. | |
| TArray< TObjectPtr< const UMovieGraphSubgraphNode > > | SubgraphStack | The current stack of subgraphs that are being visited. | |
| FMovieGraphTraversalContext | UserContext | This is the user provided traversal context which specifies high level user decisions. | |
| TSet< TObjectPtr< UMovieGraphNode > > | VisitedNodes | A list of nodes that have been visited. Used for cycle detection right now. |