Version: 2017.4
LanguageEnglish
  • C#
  • JS

Script language

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

EditorGUI.LayerField

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 static method LayerField(position: Rect, layer: int, style: GUIStyle = EditorStyles.popup): int;
public static int LayerField(Rect position, int layer, GUIStyle style = EditorStyles.popup);
public static method LayerField(position: Rect, label: string, layer: int, style: GUIStyle = EditorStyles.popup): int;
public static int LayerField(Rect position, string label, int layer, GUIStyle style = EditorStyles.popup);
public static method LayerField(position: Rect, label: GUIContent, layer: int, style: GUIStyle = EditorStyles.popup): int;
public static int LayerField(Rect position, GUIContent label, int layer, GUIStyle style = EditorStyles.popup);

Parameters

positionRectangle on the screen to use for the field.
labelOptional label in front of the field.
layerThe layer shown in the field.
styleOptional GUIStyle.

Returns

int The layer selected by the user.

Description

Make a layer selection field.


Layer field in an Editor Window.

// Change the Tag and/or the layer of the selected GameObjects.

class EditorGUITagLayerField extends EditorWindow {

var selectedTag : String = ""; var selectedLayer : int = 0;

@MenuItem("Examples/Tag - Layer for Selection") static function Init() { var window = GetWindow(EditorGUITagLayerField); window.position = Rect(0,0,350,70); window.Show(); }

function OnGUI() { selectedTag = EditorGUI.TagField( Rect(3,3,position.width/2 - 6, 20), "New Tag:", selectedTag); selectedLayer = EditorGUI.LayerField( Rect(position.width/2 + 3,3, position.width/2 - 6, 20), "New Layer:", selectedLayer);

if(Selection.activeGameObject) { if(GUI.Button(Rect(3,25,90,17),"Change Tags")) for(var go : GameObject in Selection.gameObjects) go.tag = selectedTag; if(GUI.Button(Rect(position.width-96, 25,90,17),"Change Layers")) for(var go : GameObject in Selection.gameObjects) go.layer = selectedLayer; } }

function OnInspectorUpdate() { Repaint(); } }