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

スクリプト言語

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

BlendMode

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

ブレンドを制御するブレンドモード

ブレンドモードはソースとターゲットで別にセットされ、ブレンド演算に入る各々のコンポーネントのブレンド要素を制御します。ブレンドモードのカラーとアルファを別々にセットすることも出来ます。注意: ブレンドモードは論理的なブレンド処理が使用されている場合は無視されます。

Variables

Zero ブレンド要素は (0, 0, 0, 0) です
One ブレンド要素は (1, 1, 1, 1)です
DstColor ブレンド要素は (Rd, Gd, Bd, Ad) です
SrcColor ブレンド要素は (Rs, Gs, Bs, As) です
OneMinusDstColor ブレンド要素は (1 - Rd, 1 - Gd, 1 - Bd, 1 - Ad) です
SrcAlpha ブレンド要素は (As, As, As, As) です
OneMinusSrcColor ブレンド要素は (1 - Rs, 1 - Gs, 1 - Bs, 1 - As) です
DstAlpha ブレンドの要素は (Ad, Ad, Ad, Ad)です
OneMinusDstAlpha ブレンド要素は (1 - Ad, 1 - Ad, 1 - Ad, 1 - Ad) です
SrcAlphaSaturate f = min(As, 1 - Ad) の場合にブレンド要素は (f, f, f, 1) です
OneMinusSrcAlpha ブレンド要素は (1 - As, 1 - As, 1 - As, 1 - As) です