How to work with Joysticks ?

Hello!

I´m planing to start the making of an RC plane simulator, I bought a RC simulator and it comes with an transmisor/joystick…
Like it:


I connected it and … Surprise int the Console apears Joystick connected… So, i want to now how to work with it, i mean how to control the inputs.
regards

Check the menu: Edit->Project Settings → Input.

You will have to map your joystick buttons, but i think thats all you need to do. Try to check if the button is working.

        if (Input.anyKey)
            Debug.Log("Hey the joystick works");

Sure.
I´m going to test it thx!