Navigation
API > API/Plugins > API/Plugins/MovieRenderPipelineRenderPasses > API/Plugins/MovieRenderPipelineRenderPasses/UMovieGraphDeferredRenderPassNod-
Description
Register a named factory that can override pass instance creation. This is used to tweak the behavior of the Deferred Renderer node. Use sparingly; generally, creating a new node is the best approach.
| Name | RegisterPassInstanceFactory |
| Type | function |
| Header File | /Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineRenderPasses/Public/Graph/Nodes/MovieGraphDeferredPassNode.h |
| Include Path | #include "Graph/Nodes/MovieGraphDeferredPassNode.h" |
| Source | /Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineRenderPasses/Private/Graph/Nodes/MovieGraphDeferredPassNode.cpp |
static void RegisterPassInstanceFactory
(
FName InName,
FPassInstanceFactory InFactory
)
Parameters
| Name | Remarks |
|---|---|
| InName | Unique name identifying the pass instance factory. If a factory with this name is already registered, it is replaced. |
| InFactory | The factory function. |