Navigation
API > API/Plugins > API/Plugins/MovieRenderPipelineCore > API/Plugins/MovieRenderPipelineCore/Graph > API/Plugins/MovieRenderPipelineCore/Graph/Nodes
Inheritance Hierarchy
- UObject
- UMovieGraphNode
- UMovieGraphSettingNode
- UMovieGraphExecuteScriptNode
References
| Module | MovieRenderPipelineCore |
| Header | /Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineCore/Public/Graph/Nodes/MovieGraphExecuteScriptNode.h |
| Include | #include "Graph/Nodes/MovieGraphExecuteScriptNode.h" |
Syntax
UCLASS ()
class UMovieGraphExecuteScriptNode : public UMovieGraphSettingNode
Remarks
This node allows users to run code before and after a movie graph is being executed. Example use cases would be to run custom logic that overrides the output directory, or to trigger an event after a shot finishes. These bits of script can be implemented in either C++, or in Python (as a UClass) because we don't serialize the object and only create it at runtime during the render. See UMovieGraphScriptBase for details.
Variables
| Type | Name | Description | |
|---|---|---|---|
| uint8: 1 | bOverride_Script | ||
| FSoftClassPath | Script | Which script should this node instantiate? The class will be instantiated when the job starts, and then different functions will be called on that instance throughout the life-time of the movie render. |
Constructors
| Type | Name | Description | |
|---|---|---|---|
Functions
| Type | Name | Description | |
|---|---|---|---|
| UMovieGraphScriptBase * | Allocate an instance of the specifed script type. Can return nullptr. |
Overridden from UMovieGraphNode
| Type | Name | Description | |
|---|---|---|---|
| EMovieGraphBranchRestriction | Determines which types of branches the node can be created in. | ||
| FSlateIcon | GetIconAndTint
(
FLinearColor& OutColor |
Gets the node's icon and icon tint, as visible in the graph. | |
| FText | Gets the category that the node belongs under. | ||
| FText | GetNodeTitle
(
const bool bGetDescriptive |
Gets the node's title. | |
| FLinearColor | Gets the node's title color, as visible in the graph. |