言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Color32

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

32 ビット形式でのRGBA の色の表現をします。

各色成分は0から255の範囲でbyte値で表します。 成分 (r,g,b) はRGB色空間で定義されます。 アルファ成分 (a)は透明度が定義されています。 - アルファが0の場合は完全に不透明、アルファが1の場合は完全に 透明です。

Variables

a アルファ成分
b 青成分
g 緑成分
r 赤成分

Constructors

Color32 r,g,b,a成分からColorを作成します。

Functions

ToString この色の情報を表す整形された文字列を返します。

Static Functions

Lerp A 色からB 色への変更というような色の変換を行います。

Operators

Color ColorからColor32に暗黙的に変換することが出来ます。
Color32 ColorからColor32に暗黙的に変換することが出来ます。