This commit is contained in:
mischa 2024-06-20 11:58:43 +02:00
parent c1fdf50400
commit 3a5a33e8e4

View File

@ -176,6 +176,15 @@ public override void OnStopClient()
Destroy(playerUIObject);
}
void OnDestroy()
{
Debug.Log("isClient " + isClient);
Debug.Log("isLocalPlayer " + isLocalPlayer);
Debug.Log("isServer " + isServer);
Debug.Log("NetworkClient.active " + NetworkClient.active);
Debug.Log("NetworkServer.active " + NetworkServer.active);
}
#endregion
}
}