↧
GUI Layout problem
var data : HostData[] = MasterServer.PollHostList(); // Go through all the hosts in the host list for (var element in data) { GUILayout.BeginHorizontal(); GUILayout.Space(20); var name =...
View ArticleHow to PollHostList already running as server?
I noticed that PollHostList() returns a HostData[].length == 0 if I started a server in the same project. NotWithstanding is there a way to get the host list as a server? In Awake() I already called...
View ArticleHow do I request a fake list of servers?
I want to make sure my game can handle the case where there are too many game servers to show on one screen. The problem is that I cannot generate more than one game server on my own so PollHostList...
View Article