I have the problem that my XBox controller does not have a name in the Console but in the Input debugger…
Im Using this script to get the name:
public class controllertest : MonoBehaviour
{
public string controllers;
void Update () {
controllers = Input.GetJoystickNames();
}
}
My PS4 controller has the name Wireless Controller in console and in this script.
element 0 is the xbox controller.
Controls are still working fine like movement and other stuff…