Skip to main content

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

Thank you for the comment, I'm glad you liked it and appreciate the suggestion!

I never added controller support before (and still haven't take the time to learn it), so I was worried that would take too much time. But if you are interested in a full release, this will be the first thing I add as soon as I start working on a non-jam version of the game :)

Yes please!  In this case gamepad should be really easy, it just needs input mapping

var horizontal = Input.get_axis('look_left', 'look_right')
var vertical = Input.get_axis('look_up', 'look_down')
var rotation_from_x_axis = atan2(vertical, horizontal)