Navigation
API > API/Plugins > API/Plugins/MovieRenderPipelineCore > API/Plugins/MovieRenderPipelineCore/UMoviePipelineConfigBase
References
| Module | MovieRenderPipelineCore |
| Header | /Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineCore/Public/MoviePipelineConfigBase.h |
| Include | #include "MoviePipelineConfigBase.h" |
UFUNCTION (BlueprintPure, Meta=(DeterminesOutputType="InClass"), Category="Movie Render Pipeline")
TArray < UMoviePipelineSetting * > FindSettingsByClass
(
TSubclassOf < UMoviePipelineSetting > InClass,
const bool bIncludeDisabledSettings,
const bool bExactMatch
) const
Remarks
Find all settings of a particular type for this config. An array of instances of this class if it already exists as a setting on this config
Parameters
| Name | Description |
|---|---|
| InClass | Class that you wish to find the setting object for. |
| bIncludeDisabledSettings | if true, disabled settings will be included in the search |
| bExactMatch | if true, only exact matches of the specified class will be found, otherwise subclasses of the specified class will also be found |