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

Going through it again to see what I meant I found two things.

Yeah, you're right on the reset. I didn't even realize that it worked that way. In that case it's not a bug at all, but is working as intended! I think I thought it was a bug since I thought death was a "full reset", and not a "respawn at checkpoint." I don't think the way you have it set-up (now knowing) is a bad thing. Maybe the presentation can be adjusted? "R to Restart" seems to me to mean a full level restart. It might be better to have a "fail" animation, then respawn automatically.

The second thing I noticed was in regards to how long ashes last. Looking at them, the amount of time they last by themselves is just fine. The problem comes with where they start to disappear from. If the player is walking down the path of ash, each step they take makes the ash under them disappear. The problem lies in the ash in front of the player disappearing while they are almost to the end of the trail. I think the ash disappearing probably starts from the first ash that is not already disappearing. I understand how this could be implemented this way, but I think a better way (not necessarily on memory) would be for each ash to have an individual timer if not stepped on. Whether it is implemented in this way, or you find a different, better way, I think the problem lies in the ashes running on the timer of the first ash pile created. (I hope this makes sense, it feels kind of like I'm rambling. Let me know if this is unclear)

(1 edit) (+1)

Sure, I would change the way the reset shows in the game, thank you for pointing out! 

And the ashes actually have individual timers (and thats why too many remains would require more memory), but the trigger to start disappear was not the player but the fire, so it goes like: after the instantiation, it starts to count down and disappear unless the player is near them. A few comments also talked about this problem, I think I would change the trigger to player and make it: unless the player touches them, they would not start disappear like you said, in the next update maybe. Thank you for the thoughts!