HostData
.gameType
Manual
Reference
Scripting
Scripting
>
Runtime Classes
>
HostData
HostData
.gameType
Menu
Overview
Runtime Classes
Attributes
Enumerations
Editor Classes
Enumerations
History
Index
HostData
All Members
Variables
comment
connectedPlayers
gameName
gameType
guid
ip
passwordProtected
playerLimit
port
useNat
var
gameType :
string
Description
The type of the game (like "MyUniqueGameType")
JavaScripts
JavaScript
C#
Boo
// Requests info from the master server and prints
// the gameType of each host
function
Start
() {
var
hostData : HostData[] =
MasterServer.PollHostList
();
for
(
var
element : HostData
in
hostData) {
Debug.Log
(element.gameType);
}
}
using UnityEngine;
using System.Collections;
public
class
example :
MonoBehaviour
{
void
Start
() {
HostData[] hostData =
MasterServer.PollHostList
();
foreach (HostData element
in
hostData) {
Debug.Log
(element.gameType);
}
}
}
import
UnityEngine
import
System.Collections
class
example(
MonoBehaviour
):
def
Start
():
hostData as (HostData) =
MasterServer.PollHostList
()
for
element as HostData
in
hostData:
Debug.Log
(element.gameType)