Files
UnrealEngine/Engine/Source/Editor/Persona/Private/CurveViewerCommands.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

17 lines
584 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "CurveViewerCommands.h"
#include "Framework/Commands/InputChord.h"
#include "Framework/Commands/UICommandInfo.h"
#define LOCTEXT_NAMESPACE "CurveViewerCommands"
void FCurveViewerCommands::RegisterCommands()
{
UI_COMMAND( AddCurve, "Add Curve", "Add a curve to the Skeleton", EUserInterfaceActionType::Button, FInputChord());
UI_COMMAND( FindCurveUses, "Find Curve Uses", "Open the find/replace tab to find all uses of this curve", EUserInterfaceActionType::Button, FInputChord(EKeys::F3));
}
#undef LOCTEXT_NAMESPACE