VSync
VSync copied to clipboard
Sending Doubles
this seems to only work for integers is there a work around to make it work with doubles? i have to send data that is more accurate than the closest whole number
There is indeed a dirty workaround. Multiply your number by 1000 before you send it and then divide by 1000 again on the receiving side (use floating point division, not integer division)