- Home /
Is it normal for my character to move smoothly sometimes and jitter other times when there is no change made? Does it happen to you?
My character controller or camera jitter sometimes when I move, not sure which one is doing it. The thing is it'll work fine sometimes even though I have made absolutely no change to either code. For example I'm online right now writing this question and when I go back it might not jitter anymore. Is this normal?
Answer by Xtro · Aug 21, 2013 at 01:51 PM
do camera work in LateUpdate instead of Update.
Xtro is probably right, but it could also be if your character is far out from world zero point (0,0,0)
if camera is moving something, it should be updated after the thing. Generally, camera movements are done in LateUpdate but it's not a must if you don't have a problem.
Your answer
Follow this Question
Related Questions
A node in a childnode? 1 Answer
Make an array with different variables... 3 Answers
How to unwrap for light mapping 1 Answer
Unity porting (windows, linux, ect) 0 Answers
Advanced Shaders 1 Answer