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

22 lines
466 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Framework/Commands/Commands.h"
class FMoviePipelineCommands : public TCommands<FMoviePipelineCommands>
{
public:
FMoviePipelineCommands();
TSharedPtr<FUICommandInfo> ResetStatus;
// Graph commands
TSharedPtr<FUICommandInfo> ZoomToWindow;
TSharedPtr<FUICommandInfo> ZoomToSelection;
/** Initialize commands */
virtual void RegisterCommands() override;
};