Skip to main content

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

Good movement mechanics. Felt easy to grasp and solid. Fit the story. I LOVE the flashlight. That was way cool! I tried to build a zombie game like this a couple years ago and couldn't get the movement right. Your game captured the feel I was trying to go for, but couldn't grasp. Can't wait to try it out in a future game. Thanks for the inspiration!

Thanks man I appreciate the feedback.  If you use Godot by any chance there is a motion smoothing function move_toward(current,target,delta) Where current is your current velocity, target is your target velocity, and delta is the change in velocity. Usually delta is some fraction of the movement speed, this gives the player the feeling of inertia. I do not know how this would be implemented in Unity or Unreal, but I would just google "<game engine> add player inertia" for more information.

Great! Thanks for the tip! I will try that out. I am actually in the process of learning Godot. I forced myself to use it for this Game Jam to try to learn the basics, and I really enjoyed it. 

(+1)

This tutorial covers the inertia based movement I mentioned previously, as well as being an all around solid tutorial.