Input.ListAllHardwareDevices
Input.ListAllHardwareDevices
#Overview
name: Input.ListAllHardwareDevices
This variable is created as a Console Variable (cvar).
- type:
Cmd
- help:
Log all the platform\'s currently available FHardwareDeviceIdentifier
It is referenced in 1
C++ source file.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Plugins/Runtime/InputDebugging/Source/InputDebugging/Private/InputDeviceDebugTools.cpp:27
Scope (from outer to inner):
file
function void FInputDeviceDebugTools::AddConsoleCommands
Source code excerpt:
{
ConsoleCommands.Add(IConsoleManager::Get().RegisterConsoleCommand(
TEXT("Input.ListAllHardwareDevices"),
TEXT("Log all the platform's currently available FHardwareDeviceIdentifier"),
FConsoleCommandWithWorldAndArgsDelegate::CreateRaw(this, &FInputDeviceDebugTools::ListAllKnownHardwareDeviceIdentifier),
ECVF_Cheat
));
}
void FInputDeviceDebugTools::RemoveConsoleCommands()
{
// Unregister console commands
for (IConsoleCommand* Command : ConsoleCommands)
{