You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb sara.schvartzman #jira UE-144247 #preflight https://horde.devtools.epicgames.com/job/635698ff9e14ee3c79504af0 [CL 22727253 by Helge Mathee in ue5-main branch]
14 lines
579 B
C++
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
|