Files
UnrealEngineUWP/Engine/Plugins/Animation/ControlRig/Source/ControlRigEditor/Private/ControlRigStackCommands.cpp
Helge Mathee 0985f94fb5 Cotnrol Rig: Go To Instruction in Stackview
#rb sara.schvartzman
#jira UE-144247
#preflight https://horde.devtools.epicgames.com/job/635698ff9e14ee3c79504af0

[CL 22727253 by Helge Mathee in ue5-main branch]
2022-10-24 10:39:34 -04:00

14 lines
579 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "ControlRigStackCommands.h"
#define LOCTEXT_NAMESPACE "ControlRigStackCommands"
void FControlRigStackCommands::RegisterCommands()
{
UI_COMMAND(FocusOnSelection, "Focus On Selection", "Finds the selected operator's node in the graph.", EUserInterfaceActionType::Button, FInputChord());
UI_COMMAND(GoToInstruction, "Go To Instruction", "Looks for a specific instruction by index and brings it into focus.", EUserInterfaceActionType::Button, FInputChord(EKeys::G, EModifierKey::Control));
}
#undef LOCTEXT_NAMESPACE