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.

ServerCallbackAttribute

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, but not generate warnings.

This custom attribute is the same as the [Server] custom attribute, except that it does not generate a warning in the console if called on a client. This is useful to avoid spamming the console for functions that will be invoked by the engine, such as Update() or physics callbacks.

#pragma strict

import UnityEngine.Networking; import UnityEngine.UI;

public class Example extends NetworkBehaviour { var regenTimer: float = 0; var heat: int = 100;

@ServerCallback function Update( ) { // heat dissipates over time if( Time.time > regenTimer ) { if( heat > 1 ) heat -= 2;

regenTimer = Time.time + 1.0f; } } }
using UnityEngine;
using UnityEngine.Networking;

public class Example : MonoBehaviour {

float regenTimer; int heat = 100;

[ServerCallback] void Update() { // heat dissipates over time if (Time.time > regenTimer) { if (heat > 1) { heat -= 2; } regenTimer = Time.time + 1.0f; } } }