Update() , LateUpdate() and FixedUpdate()
what is the difference between these and when i should use one of them and is it wrong to use Update() all the time?
what is the difference between these and when i should use one of them and is it wrong to use Update() all the time?
Check out this link on Update Order
Don’t forget, @Ziad , that if you are performing camera scripting its best to put it in LateUpdate(). That way the movement calculations have already been done.