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

Smooth controls, cool graphics and really good movement and melee attacking. My only complaint is not really getting any feedback when getting hit or hitting the monster(sound effect, slight screen shake, sprite flashing, etc..), but that is something easy to remedy.

Your melee mechanic and just the smooth movement in general is so good, I'm inspired heavily by this game to make some improvements on my jumping/melee sword attacks for my long term project I'm working on, you did really good! Did you literally code this from scratch in Java or use an engine? Either way, great job!! 

(+1)

There is a sound effect for getting hit, however it's not as noticeable as I'd like. Adding a flash to the sprites would definitely help a lot.

It is indeed from scratch in java, specifically Processing 3, no engines. After voting is done I'll clean up the source code and put it up.

The smooth look comes from using a low pass filter between the camera and the target(player). like cameraLocation = cameraLocation - smoothing*(playerLocation - cameraLocation ). Also using a velocity vector for the player, with acceleration, instead of just hard left or right.