You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
13 lines
608 B
C++
13 lines
608 B
C++
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
#include "LevelInstanceEditorModeCommands.h"
|
||
|
|
|
||
|
|
#define LOCTEXT_NAMESPACE "LevelInstanceEditorModeCommands"
|
||
|
|
|
||
|
|
void FLevelInstanceEditorModeCommands::RegisterCommands()
|
||
|
|
{
|
||
|
|
UI_COMMAND(ExitMode, "Exit Mode", "Exits mode asking to save pending changes", EUserInterfaceActionType::Button, FInputChord(EKeys::Escape));
|
||
|
|
UI_COMMAND(ToggleContextRestriction, "Toggle Context Restriction", "Toggles edit restrictions like selection to current level edit", EUserInterfaceActionType::ToggleButton, FInputChord(EKeys::L, EModifierKey::Shift));
|
||
|
|
}
|
||
|
|
|
||
|
|
#undef LOCTEXT_NAMESPACE
|