unreal.MovieGraphPinQueryRequirement

class unreal.MovieGraphPinQueryRequirement

Bases: EnumBase

Specifies a restriction on pin properties when searching for a pin on a node.

C++ Source:

  • Plugin: MovieRenderPipeline

  • Module: MovieRenderPipelineCore

  • File: MovieGraphPin.h

BUILT_IN: MovieGraphPinQueryRequirement

The pin must be built-in, meaning that it is always present on the node.

Type:

0

BUILT_IN_OR_DYNAMIC: MovieGraphPinQueryRequirement

The pin can be either built-in or dynamic.

Type:

2

DYNAMIC: MovieGraphPinQueryRequirement

The pin must be dynamic, meaning that it may not always exist on the node. These are typically user-created pins.

Type:

1