Hello there,
I'm having a lag issue when calling RFC functions locally as a host, when connected to a remote server that has about 600ms ping.
I get the same issue on the TNet Example scenes, namely clicking on a cube to change it's color:
tno.Send("OnColor", Target.All, color); -> This is the default line, and has about a 1 second delay locally
changing it to:
tno.Send("OnColor", Target.Host, color); -> This runs instantly as expected
is this intended? it makes sense that Target.All should run instantly locally
thanks a lot for your help,
Vic