I have an empty gameObject with a script that contains below code snippet.
void FixedUpdate () {
if (isServer) {
Debug.Log ("NCL:" + Network.connections.Length);
}
}
Everytime a client connects, the above NCL value stays 0.
What can be wrong here?