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.

MaterialEditor.TexturePropertySingleLine

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 TexturePropertySingleLine(label: GUIContent, textureProp: MaterialProperty): Rect;
public Rect TexturePropertySingleLine(GUIContent label, MaterialProperty textureProp);
public function TexturePropertySingleLine(label: GUIContent, textureProp: MaterialProperty, extraProperty1: MaterialProperty): Rect;
public Rect TexturePropertySingleLine(GUIContent label, MaterialProperty textureProp, MaterialProperty extraProperty1);
public function TexturePropertySingleLine(label: GUIContent, textureProp: MaterialProperty, extraProperty1: MaterialProperty, extraProperty2: MaterialProperty): Rect;
public Rect TexturePropertySingleLine(GUIContent label, MaterialProperty textureProp, MaterialProperty extraProperty1, MaterialProperty extraProperty2);

Parámetros

label The label used for the texture property.
textureProp The texture property.
extraProperty1 First optional property inlined after the texture property.
extraProperty2 Second optional property inlined after the extraProperty1.

Valor de retorno

Rect Returns the Rect used.

Descripción

Method for showing a texture property control with additional inlined properites.

This method can be used if multiple controls is wanted on the same line. The texture is shown using the mini thumbnail. Usefull for compact representation of properties of up to three material properties. See Also: TexturePropertyTwoLines, ShaderGUI.