You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, calculating how many frames ahead the client wants to be happens at process_delta_update_message. The server can additionally supply a signed integer in the DeltaUpdate message: if it's a negative number it would mean that the client has to be more ahead of the server, otherwise - less.
The text was updated successfully, but these errors were encountered:
Currently, the client itself tries to predict how much it should be ahead of the server, which is sometimes inaccurate.
We can use the approach highlighted in this RFC discussion:
bevyengine/rfcs#19 (comment)
Currently, calculating how many frames ahead the client wants to be happens at
process_delta_update_message
. The server can additionally supply a signed integer in theDeltaUpdate
message: if it's a negative number it would mean that the client has to be more ahead of the server, otherwise - less.The text was updated successfully, but these errors were encountered: