C# Класс UnityEngine.ColorUsageAttribute

Наследование: PropertyAttribute
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
hdr bool
maxBrightness float
maxExposureValue float
minBrightness float
minExposureValue float
showAlpha bool

Открытые методы

Метод Описание
ColorUsageAttribute ( bool showAlpha ) : System

Attribute for Color fields. Used for configuring the GUI for the color.

ColorUsageAttribute ( bool showAlpha, bool hdr, float minBrightness, float maxBrightness, float minExposureValue, float maxExposureValue ) : System

Attribute for Color fields. Used for configuring the GUI for the color.

Описание методов

ColorUsageAttribute() публичный Метод

Attribute for Color fields. Used for configuring the GUI for the color.

public ColorUsageAttribute ( bool showAlpha ) : System
showAlpha bool If false then the alpha channel info is hidden both in the ColorField and in the Color Picker.
Результат System

ColorUsageAttribute() публичный Метод

Attribute for Color fields. Used for configuring the GUI for the color.

public ColorUsageAttribute ( bool showAlpha, bool hdr, float minBrightness, float maxBrightness, float minExposureValue, float maxExposureValue ) : System
showAlpha bool If false then the alpha channel info is hidden both in the ColorField and in the Color Picker.
hdr bool Set to true if the color should be treated as a HDR color (default value: false).
minBrightness float Minimum allowed HDR color component value when using the HDR Color Picker (default value: 0).
maxBrightness float Maximum allowed HDR color component value when using the HDR Color Picker (default value: 8).
minExposureValue float Minimum exposure value allowed in the HDR Color Picker (default value: 1/8 = 0.125).
maxExposureValue float Maximum exposure value allowed in the HDR Color Picker (default value: 3).
Результат System

Описание свойств

hdr публичное свойство

If set to true the Color is treated as a HDR color.

public bool hdr
Результат bool

maxBrightness публичное свойство

Maximum allowed HDR color component value when using the HDR Color Picker.

public float maxBrightness
Результат float

maxExposureValue публичное свойство

Maximum exposure value allowed in the HDR Color Picker.

public float maxExposureValue
Результат float

minBrightness публичное свойство

Minimum allowed HDR color component value when using the Color Picker.

public float minBrightness
Результат float

minExposureValue публичное свойство

Minimum exposure value allowed in the HDR Color Picker.

public float minExposureValue
Результат float

showAlpha публичное свойство

If false then the alpha bar is hidden in the ColorField and the alpha value is not shown in the Color Picker.

public bool showAlpha
Результат bool