Navigation
API > API/Plugins > API/Plugins/MovieRenderPipelineCore > API/Plugins/MovieRenderPipelineCore/Graph > API/Plugins/MovieRenderPipelineCore/Graph/UMovieGraphBlueprintLibrary
References
| Module | MovieRenderPipelineCore |
| Header | /Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineCore/Public/Graph/MovieGraphBlueprintLibrary.h |
| Include | #include "Graph/MovieGraphBlueprintLibrary.h" |
| Source | /Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineCore/Private/Graph/MovieGraphBlueprintLibrary.cpp |
UFUNCTION&40;BlueprintCallable, Category&61;"Movie Graph"&41;
static FString ResolveFilenameFormatArguments
&40;
const FString & InFormatString,
const FMovieGraphFilenameResolveParams & InParams,
FMovieGraphResolveArgs & OutMergedFormatArgs
&41;
Remarks
Takes a Movie Graph format string (in the form of {token}), a list of parameters (which normally come from the running UMovieGraphPipeline) and resolves them into a string. Unknown tokens are ignored. Which tokens can be resolved depends on the contents of InParams, tokens from settings rely on a evaluated config being provided, etc.
- The resolved format string.
Parameters
| Name | Description |
|---|---|
| InFormatString | Format string to attempt to resolve. |
| InParams | A list of parameters to use as source data for the resolve step. Normally comes from the UMovieGraphPipeline instance,but takes (mostly) POD here to allow using this function outside of the render runtime. |
| OutMergedFormatArgs | The set of KVP for both filename formats and file metadata that is generated as a result of this. Provided in case youneeded to do your own string resolving with the final dataset. |