32 ビット形式での RGBA の色の表現をします。
各色成分は 0 から 255 の範囲で byte 値で表します。
Components (r,g,b) define a color in RGB color space. Alpha component (a)
defines transparency - alpha of 255 is completely opaque, alpha of zero is completely
transparent.
a | アルファ成分 |
b | 青成分 |
g | 緑成分 |
r | 赤成分 |
this[int] | Access the red (r), green (g), blue (b), and alpha (a) color components using [0], [1], [2], [3] respectively. |
Color32 | 与えられた r、g、b、a 成分から新しい Color32 を作成します。 |
ToString | Returns a formatted string for this color. |
Lerp | t で a と b 間の色を線形補間します。 |
LerpUnclamped | t で a と b 間の色を線形補間します。 |