Navigation
API > API/Plugins > API/Plugins/MovieRenderPipelineCore
Specifies a restriction on pin properties when searching for a pin on a node.
| Name | EMovieGraphPinQueryRequirement |
| Type | enum |
| Header File | /Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineCore/Public/Graph/MovieGraphPin.h |
| Include Path | #include "Graph/MovieGraphPin.h" |
Syntax
enum EMovieGraphPinQueryRequirement
{
BuiltIn,
Dynamic,
BuiltInOrDynamic,
}
Values
| Name | Remarks |
|---|---|
| BuiltIn | The pin must be built-in, meaning that it is always present on the node. |
| Dynamic | The pin must be dynamic, meaning that it may not always exist on the node. |
| BuiltInOrDynamic | The pin can be either built-in or dynamic. |