Skip to main content

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

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