From 21ce6290f4e1ec5c7071130c91730223e6235cc5 Mon Sep 17 00:00:00 2001 From: minenice55 Date: Mon, 8 Jan 2024 22:31:29 -0500 Subject: [PATCH] test to ID input issue TO REVERT --- Assets/Scripts/InputSystem/PlayerInput.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Assets/Scripts/InputSystem/PlayerInput.cs b/Assets/Scripts/InputSystem/PlayerInput.cs index f8668236c..4c4cc4719 100644 --- a/Assets/Scripts/InputSystem/PlayerInput.cs +++ b/Assets/Scripts/InputSystem/PlayerInput.cs @@ -158,6 +158,7 @@ namespace HeavenStudio foreach (InputController i in inputDevices) { if (i == null) continue; + Debug.Log($"Polling controller {i.GetDeviceName()} (frame {Time.frameCount})"); i.UpdateState(); } }