Hello.
I’ve upgraded my project from Unity 5.4.1 to 5.5 and I’ve got UNET weaver error. It is caused by method:
[Command]
public void CmdGetUID(NetworkIdentity sender, UnityAction<int> callback) {
//Some logic here...
}
Which basicaly allows any client to identify (easily and reliably) the owner of any object even if scene is changed, players dissconects and new players came.
The method was working great on Unity 5.4.1. While I don’t have to, I would like to upgrade project to new version of the engine.
So my question is how in a client can request for a specific data to be generated by the server and send it back to the specific object for all clients (in Unity 5.5)?