diff --git a/Assets/Scripts/InputSystem/PlayerInput.cs b/Assets/Scripts/InputSystem/PlayerInput.cs index f8668236..4c4cc471 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(); } }