Version: 2019.2
LanguageEnglish
  • C#

EditorGUILayout.GradientField

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 Gradient GradientField(Gradient value, params GUILayoutOption[] options);
public static Gradient GradientField(string label, Gradient value, params GUILayoutOption[] options);
public static Gradient GradientField(GUIContent label, Gradient value, params GUILayoutOption[] options);
public static Gradient GradientField(GUIContent label, Gradient value, bool hdr, params GUILayoutOption[] options);

Parameters

labelOptional label to display in front of the field.
valueThe gradient to edit.
optionsAn optional list of layout options that specify extra layout properties. Any values passed in here will override settings defined by the style.
See Also: GUILayout.Width, GUILayout.Height, GUILayout.MinWidth, GUILayout.MaxWidth, GUILayout.MinHeight, GUILayout.MaxHeight, GUILayout.ExpandWidth, GUILayout.ExpandHeight.

Returns

Gradient The gradient edited by the user.

Description

Make a field for editing a Gradient.

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;

public class EditorGUIGradientField : EditorWindow { Gradient gradient = new Gradient();

[MenuItem("Examples/Gradient Field demo")] static void Init() { EditorWindow window = GetWindow(typeof(EditorGUIGradientField)); window.position = new Rect(0, 0, 400, 199); window.Show(); }

void OnGUI() { gradient = EditorGUILayout.GradientField( "Gradient", gradient); } }