Navigation
API > API/Plugins > API/Plugins/MovieRenderPipelineCore > API/Plugins/MovieRenderPipelineCore/UMovieGraphInputNode
Description
Used to determine which pins we should follow when trying to traverse the graph. By default we will follow any input pin (with Branch type) on the node, but override this in inherited classes and change that if you need custom logic, such as boolean nodes that want to choose one or the other based on the results of a conditional property.
Note that if custom logic is provided, the case where the node is disabled should be handled as well.
Virtual Inheritance
- UMovieGraphNode::EvaluatePinsToFollow → UMovieGraphInputNode::EvaluatePinsToFollow
| Name | EvaluatePinsToFollow |
| Type | function |
| Header File | /Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineCore/Public/Graph/Nodes/MovieGraphInputNode.h |
| Include Path | #include "Graph/Nodes/MovieGraphInputNode.h" |
| Source | /Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineCore/Private/Graph/Nodes/MovieGraphInputNode.cpp |
virtual TArray < UMovieGraphPin * > EvaluatePinsToFollow
(
FMovieGraphEvaluationContext & InContext
) const