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

Thank you so much for the kind words! I'm glad you understood the tutorial buttons since I was a little bit worried that the controls would be confusing to players. 

The moon movement speed was probably a bug more than anything. In editor it worked super well, but when I made a build it seemed to change it completely and not be affected as much as I wanted it to be. If I could change any one thing about my game it would be to fix the movement speed to be more consistent and clear.

Thanks again for playing and leaving the feedback, I really appreciate it. 

(+1)

Not sure how you setup your inputs, but I ran into an issue very similar to that once. For me, changing .GetAxis to .GetAxisRaw fixed it. I believe .GetAxis is more dependent on frame rate which can change a lot when playing in the editor vs. a build.

(+1)

Ah I was just using "GetKey" and hard coded the buttons in. Probably isn't the right way to handle it, but it was working so well in editor that I didn't second guess it until a friend told me it felt weird the day before I had to submit. Tweaked it a bit until it felt good in a build to me, but probably should've looked into it more. Thanks for the advice!

Gotcha, no worries! Also just remembered the Update method for movement causes similar framerate-related issues. If you’re already using FixedUpdate, then I’m  all out of ideas haha.