Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

NetworkLobbyManager.OnLobbyServerPlayersReady

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public function OnLobbyServerPlayersReady(): void;
public void OnLobbyServerPlayersReady();

Descripción

This is called on the server when all the players in the lobby are ready.

The default implementation of this function uses ServerChangeScene() to switch to the game player scene. By implementing this callback you can customize what happens when all the players in the lobby are ready, such as adding a countdown or a confirmation for a group leader.

#pragma strict
public class GuiLobby extends NetworkLobbyManager {
	var countTimer: float = 0;
	public override function OnLobbyServerPlayersReady() {
		countTimer = Time.time + 5;
	}
	function Update() {
		if (countTimer == 0) return ;
		if (Time.time > countTimer) {
			countTimer = 0;
			ServerChangeScene(playScene);
		}
		else {
			Debug.Log("Counting down " + (countTimer - Time.time));
		}
	}
}
using UnityEngine;
using UnityEngine.Networking;

public class GuiLobby : NetworkLobbyManager { float countTimer = 0;

public override void OnLobbyServerPlayersReady() { countTimer = Time.time + 5; }

void Update() { if (countTimer == 0) return;

if (Time.time > countTimer) { countTimer = 0; ServerChangeScene(playScene); } else { Debug.Log("Counting down " + (countTimer - Time.time)); } } }