Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

I'm glad you enjoyed the game, and thanks a lot for your feedback. I did, in fact, try to implement coyote time jump by essentially increasing the bounding box for checking if player is in ground, but that had the side-effect of introducing the wall jump capability, i.e. the player can just jump from the side of the platform without ever being ON the platform. Do you know of any links/resources on how to implement this properly in Unity?

The background music is by: https://freesound.org/people/frankum/, and this is the particular one: https://freesound.org/people/frankum/sounds/393520/. I just asked on Tim's discord, and someone suggested this to me.

(+1)

ah try starting a timer when the player stops being "grounded" (i.e. touching the floor) and *hasn't* jumped for maybe 0.5f, then -= Time.deltaTime every frame, and only set grounded to false when that timer is done? That's what I usually do, though I tend to do a small raycast from the player's feet so it might be more difficult if you're using a collider to check that!