C# 클래스 UnityEngine.ColorUsageAttribute

상속: PropertyAttribute
파일 보기 프로젝트 열기: CarlosHBC/UnityDecompiled

공개 프로퍼티들

프로퍼티 타입 설명
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