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.

HeaderAttribute

class in UnityEngine

/

Hereda de:PropertyAttribute

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

Use this PropertyAttribute to add a header above some fields in the Inspector.

The header is done using a DecoratorDrawer.

@Header ("Health Settings")
var health : int = 0;
var maxHealth : int = 100;

@Header ("Shield Settings") var shield : int = 0; var maxShield : int = 0;
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { [Header("Health Settings")] public int health = 0; public int maxHealth = 100; [Header("Shield Settings")] public int shield = 0; public int maxShield = 0; }

Variables

headerThe header text.

Constructores

HeaderAttributeAdd a header above some fields in the Inspector.

Miembros heredados

Variables

orderOptional field to specify the order that multiple DecorationDrawers should be drawn in.