Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Hey thank you for you comment, unfortunately it's not that easy, we are using smoothDeltaTime to rotate the camera but it just seems to vary a lot based on the pc for some reason, thanks anyway for the suggestion!

Anyway you can set the sensitivity in the pause menu if you want to give it another try!

Hmm, sorry to hear that. Thanks for the reply.  Will check it out again :) 

If you use the Update() method to rotate your camera you can use Time.deltaTime, and if you do the exact same thing in FixedUpdate() yuoi must use Time.fixedDeltaTime

Yeah we know, we are using smoothDeltaTime (which is basically a smoothed out Time.deltaTime to account for framerate drops) inside the update method, it must be something less obvious, we'll look into it