Let’s say I have three shorts I need to send fairly often.
Would it be better to put try to combine them into one usermessage by putting them in a vector (which turns them all into floats), do something like having one a short, one a longr, and one a float, or just send three separate usermessages sending them all separately as shorts?
Basically, is it better to send each variable as the smallest possible in it’s own usermessage or try to combine them when possible?