hdr | 如果颜色应视为 HDR 颜色,则设置为 true(默认值:false)。 |
colorSpace | 颜色应视为来自此颜色空间(默认值:ColorSpace.Gamma)。 |
用于渐变字段的属性。用于配置 Gradient Editor 的 GUI。
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; }