Version: 2022.2

GradientUsageAttributeConstructor

切换到手册
public GradientUsageAttribute (bool hdr);
public GradientUsageAttribute (bool hdr, ColorSpace colorSpace);

参数

hdr 如果颜色应处理为 HDR 颜色,则设置为 true(默认值:false)。
colorSpace The colors should be treated as from this color space (default value: ColorSpace.Gamma).

描述

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