How do I get the list of all online photon players and send them game invitations?

Options
foreach( PhotonPlayer player in PhotonNetwork.playerList)
{
print(player.name);
}
This returns only current player and not all players

Answers