Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+2)

Wow, this one really blew me away, esp those slash animations!  The only thing I'd change about it is add controller support.  I initially assumed the orb was a "mark" but was pleasantly surprised to find that it, sensibly, is a zone.

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)