You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Add in a slate notification when a gamepad's state changes in the editor, which displays the Platform User, Device ID, and connection state. In the future I'd like to make a small window that shows you all currently connected devices and the data associated with them, as well possiblly as visualize some of their input or allow you to inject input to different pads. #jira none #rb benjamin.fox #rb nate.strohmyer #preflight 630944779f7fd5df573ba92b [CL 21721464 by ben hoffman in ue5-main branch]
20 lines
383 B
C#
20 lines
383 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class InputDebuggingEditor : ModuleRules
|
|
{
|
|
public InputDebuggingEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"ApplicationCore",
|
|
"Slate",
|
|
"SlateCore",
|
|
"MainFrame",
|
|
}
|
|
);
|
|
}
|
|
}
|
|
} |