Version: 2022.3
언어: 한국어

GradientUsageAttributeConstructor

매뉴얼로 전환
public GradientUsageAttribute (bool hdr);
public GradientUsageAttribute (bool hdr, ColorSpace colorSpace);

파라미터

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

설명

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