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.

PropertyScope

class in UnityEditor

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

Create a Property wrapper, useful for making regular GUI controls work with SerializedProperty.

Most EditorGUI and EditorGUILayout GUI controls already have overloads that work with SerializedProperty. However, for GUI controls that don't handle SerializedProperty you can wrap them inside BeginProperty and EndProperty as shown in the example below. You can use this for your own custom GUI controls too.

BeginProperty and EndProperty automatically handle default labels, bold font for prefab overrides, revert to prefab right click menu, and setting showMixedValue to true if the values of the property are different when multi-object editing.


        
class ExampleClass {
  	// A slider function that takes a SerializedProperty
	void Slider (Rect position, SerializedProperty prop, float leftValue, float rightValue, GUIContent label) {
		using (var scope = new EditorGUI.PropertyScope (position, label, prop)) {
			label = scope.content;
			EditorGUI.BeginChangeCheck ();
			var newValue = EditorGUI.Slider (position, label, prop.floatValue, leftValue, rightValue);
			// Only assign the value back if it was actually changed by the user.
			// Otherwise a single value will be assigned to all objects when multi-object editing,
			// even when the user didn't touch the control.
			if (EditorGUI.EndChangeCheck ())
				prop.floatValue = newValue;
		}
	}
}

See Also: BeginProperty.

Variables

contentThe actual label to use for the control.

Constructores

EditorGUI.PropertyScopeCreate a new PropertyScope and begin the corresponding property.