Legacy Documentation: Version 5.5
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

MaterialEditor.TexturePropertySingleLine

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

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);

Parameters

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.

Returns

Rect Returns the Rect used.

Description

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.