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.

ServerAttribute

class in UnityEngine.Networking

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

Descripción

A Custom Attribute that can be added to member functions of NetworkBehaviour scripts, to make them only run on servers.

A [Server] method returns immediately if NetworkServer.active is not true, and generates a warning on the console. This attribute can be put on member functions that are meant to be only called on server. This would redundant for [Command] functions, as being server-only is already enforced for them.

#pragma strict

import UnityEngine.Networking; import UnityEngine.UI;

public class Example extends NetworkBehaviour { @Server public function Explode( ) { NetworkServer.Destroy( gameObject ); } }
using UnityEngine;
using UnityEngine.Networking;

public class Example : NetworkBehaviour { [Server] public void Explode( ) { NetworkServer.Destroy( gameObject ); } }