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

Hey! I've found a magic number for the camera movement if you have the pixel perfect component on your camera... 

transform.position = Vector3.Slerp(transform.position, desiredPosition, speed * Time.deltaTime);

is what I use, and speed = 2.5f

Hope this helps.