Hi,
Im starting use multiplayer componnent, making sprite player move to last touch position (x,y) using Behavior [MoveTo]
On Host side, everyting is ok, and the Peer see the sprite move, but is Peer site try to move but theres some insue movement .
I have look to multiplayer examples and read one note:
"Note an important detail is that we rely on the bits in the 'inputs' variable, updated by the above event, to know which controls are being pressed. We do not test actual mouse or keyboard input here. The reason for this is that the input states are by default only sent to the host 30 times a second, whereas the game typically runs at 60 FPS, so inputs are only sent about every other frame. If we tested for input directly in this event, then we might not actually send that input to the host until the next frame. This would mean locally we move the peer one more frame than the host will have, which will make the player deviate slightly more from the host and cause more input prediction error. By only moving the player with controls we know we've already sent to the host the player is more likely to stay in sync."
So, is there some solution for "move to" on Peer side, or something that i can use touch "tap-to-move" ?
Best Regards