Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
CloseipAddress | The IP address to bind to (optional). |
serverPort | Listen port number. |
bool True if listen succeeded.
Start the server on the given port number. Note that if a match has been created, this will listen using the Relay server instead of a local socket.
using UnityEngine; using UnityEngine.Networking;
public class Manager : MonoBehaviour { bool isAtStartup = true;
void Update() { if (Input.GetKeyDown(KeyCode.S) && isAtStartup) { NetworkServer.Listen(4444); NetworkServer.RegisterHandler(MsgType.Ready, OnPlayerReadyMessage);
isAtStartup = false; } }
public void OnPlayerReadyMessage(NetworkMessage netMsg) { // TODO: create player and call PlayerIsReady() } }