Hi, I’d like to confirm whether multiple modifications to an int32 array within the same frame are guaranteed to be received by the client in same frame.
For example:
Both the server and client start with the array {1}.
In a single server frame, the server adds 2 and 3 and removes 1.
Will the client receive the full set of changes within one frame, ensuring that its array becomes {2, 3}?