Version: 2022.3
LanguageEnglish
  • C#

GradientUsageAttribute Constructor

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

Declaration

public GradientUsageAttribute(bool hdr);

Declaration

public GradientUsageAttribute(bool hdr, ColorSpace colorSpace);

Parameters

hdr Set to true if the colors should be treated as HDR colors (default value: false).
colorSpace The colors should be treated as from this color space (default value: ColorSpace.Gamma).

Description

Attribute for gradient fields. Used to configure the GUI for the Gradient Editor.

using UnityEngine;

public class ExampleScript : MonoBehaviour { // Inspector editor for this gradient // allows to setup regular low dynamic range // colors. public Gradient defaultGradient;

// Inspector editor for this gradient allows // to setup HDR colors. [GradientUsage(true)] public Gradient hdrGradient; }