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

Necron is correct. In a lot of games, what they'll do is create a separate object which follows the player at a certain speed, camera will lock onto that object instead. Once it gets really close to the player, that speed also slows down a lot so you get much smoother transitions. One lazy implementation is to have the camera move 1/2 the distance towards the player from where it currently is per step (or similar).

You end up with a camera that trails behind the player if it moves really fast, while simultaneously it won't move much if they stay within the same area and jerk around a lot. I think a lot of tutorials have referred to this as "Smooth Camera".

(+1)

Yeah, it's something I have never even thought about really. Obviously as the game was made in such a short of amount of time I didn't think about it. But there's a way I could easily implement something like that I suppose!