Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Oh wow open source is so amazing I have never had anyone send a pull request I don't even know how that works ahah

(2 edits)

Sorry, but it doesn't seems like I can just fix that for you that easily. Playstation and XInput gamepads use different axis configurations in Unity. You can check out how this works here: https://wiki.unity3d.com/index.php/Xbox360Controller

  • The triggers are axis 3.
  • The right stick are axis 4 (horizontal) and 5 (vertical).

So people with an XInput gamepads like me just need to hold the right stick down when they don't want to shoot.

I don't think there is a simple fix to just make it work on either gamepad. I think you have to add some way for the player to tell you what gamepad they have and configure the control accordingly. Or perhaps switching to the new Unity Input System might help?

Thanks for looking into this and for the info. I thought of the new Input System during the jam but I was afraid I would get stuck implementing a big system that I don't know about in the middle of a jam. I'm definitely planning to know more about it before my next jam though. I have used InControl in the past I also thought I would save time by skipping that layer.

It's too bad for this time, but next time I'll know more about this, and I'll put the necessary time in it

Hey! I ended up doing it. Last night I sat down and I implemented the new Input System, and I was told that it now works fine for other controllers! Thanks again!