Files
UnrealEngine/Engine/Plugins/Runtime/nDisplay/Source/DisplayClusterDetails/Private/DisplayClusterDetailsCommands.cpp
2025-05-18 13:04:45 +08:00

13 lines
465 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "DisplayClusterDetailsCommands.h"
#define LOCTEXT_NAMESPACE "DisplayClusterDetails"
void FDisplayClusterDetailsCommands::RegisterCommands()
{
UI_COMMAND(OpenDetailsDrawer, "Open In-Camera VFX Drawer", "Opens the In-Camera VFX details drawer from the status bar", EUserInterfaceActionType::Button, FInputChord(EModifierKey::Control | EModifierKey::Shift, EKeys::SpaceBar));
}
#undef LOCTEXT_NAMESPACE