Hi!
This is very great tutorial and very important one! So I have been trying to get grasp of everything before moving to next lecture. This one is giving me a headache.
So I think I undestand everything to the point where server changes the ServerState variable. So when server changed the variable, OnRep function is run on clients, right? What I don’t undestrand is why we ain’t experiencing the glitch?
The function starts with:
SetActorTransform(ServerState.Transform);
Doesn’t that mean that we would first experience the glitch jump when we set the position where the server tells us? Why we run this function first?
Next we are are setting velocity that is all good.
Velocity = ServerState.Velocity;
Next. we are are running the
ClearAcknowledgedMoves(ServerState.LastMove);
What exactly is happening here? The function says that if our move timestamp is bigger than the server one we create a new array of that. I still don’t undestrand what kind of moves are in the new Array, could you give more clarification about that? After we have created new array, we foreach that new array and run SimulateMove for each array index. I don’t undestrand how we get the effect we have by doing that (removing the glitching)?
That bring me back to first question: Why we are doing this in beginning?
SetActorTransform(ServerState.Transform);
Thanks!