Hi
I'm just trying out Unity MultiPlayer and when I try to use my own code instead of network manager to spawn player objects then syncing doesn't work from client to server. the local client in the host works but not the other one.
also how can I read the content of AddPlayerMessage from the received message. there seem to be no class for that.
here is my code
spawning player object without network manager.
I'm just trying out Unity MultiPlayer and when I try to use my own code instead of network manager to spawn player objects then syncing doesn't work from client to server. the local client in the host works but not the other one.
also how can I read the content of AddPlayerMessage from the received message. there seem to be no class for that.
here is my code
Code (CSharp):
- using UnityEngine;
- using UnityEngine.Networking;
- using UnityEngine.Networking.Types;
- using...