Files
UnrealEngine/Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineEditor/Private/MovieRenderPipelineStyle.h
2025-05-18 13:04:45 +08:00

25 lines
494 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Styling/SlateStyle.h"
#include "Styling/SlateStyleRegistry.h"
/**
* Slate style set that defines all the styles for the Movie Render Pipeline UI
*/
class FMovieRenderPipelineStyle
: public FSlateStyleSet
{
public:
static FName StyleName;
/** Access the singleton instance for this style set */
static FMovieRenderPipelineStyle& Get();
private:
FMovieRenderPipelineStyle();
~FMovieRenderPipelineStyle();
};