I am making a dual-analog shooter, and I just implemented the gamepad controls. They work great, but because I got part of the solution from a tutorial, I don't quite understand exactly what it does. I'm working on the game with a student, so it's important that I understand how it's working so I can explain it to him.
The left stick controls the ship movement and the right stick controls its orientation. Where I'm confused is what the three pairs of numbers are referring to in the first action in the right analog-stick event, here: "angle(0,0,Gamepad.Axis(0,2),Gamepad.Axis(0,3))". Can anyone break this down in a semi easy-to-comprehend way, please? Thanks!