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
Since world entities, the entire updating procedure for info packets has become quite a nightmare to maintain server-side.
It'd be nice to find a way to merge all three infos into one so the server could get away with less calls.
As an example, all infos currently contain player's own coord as well as the "render coord"; right now you must call each of the three infos individually and pass in the same coordinates before being able to build it. A lot of the updating procedure is similar. All this could be merged into one, e.g. infos.updateCoord(), infos.updateRenderCoord() and so on.
The text was updated successfully, but these errors were encountered:
Since world entities, the entire updating procedure for info packets has become quite a nightmare to maintain server-side.
It'd be nice to find a way to merge all three infos into one so the server could get away with less calls.
As an example, all infos currently contain player's own coord as well as the "render coord"; right now you must call each of the three infos individually and pass in the same coordinates before being able to build it. A lot of the updating procedure is similar. All this could be merged into one, e.g. infos.updateCoord(), infos.updateRenderCoord() and so on.
The text was updated successfully, but these errors were encountered: