I would ask about how to change my networkmanager script if I get this error :
“error CS0619: UnityEngine.Networking.Match.NetworkMatch.SetProgramAppID(UnityEngine.Networking.Types.AppID)' is obsolete: This function is not used any longer to interface with the matchmaker. Please set up your project by logging in through the editor connect dialog.”
it says something wrong in my script in these lines :
void Update()
{
if (networkMatch == null)
{
var nm = GetComponent<NetworkMatch>();
if (nm != null)
{
networkMatch = nm as NetworkMatch;
UnityEngine.Networking.Types.AppID appid = (UnityEngine.Networking.Types.AppID)******;
networkMatch.SetProgramAppID(appid); // here it is something wrong with 5.4
}
}
}
Any idea what has been changed ?
Thank you
CHeers ![]()