On this page |
順番通りの入力で指定したアトリビュートが順々に合成されます。 アトリビュートは、まず最初に、それに相当するブレンドウェイトでスケールされてから、指定したコンポジットオペレータを使って合成されます。
アトリビュートは、Attributesタブのテキストフィールドで以下のルールに基づいて明示的に指定することができます:
-
フィールドを空っぽのまま、または、アスタリスク(
*
)を入力することで、利用可能なアトリビュートすべてを転送するように指定することができます。 -
アトリビュート名の頭にキャレット文字(
^
)を付けることで、転送されないアトリビュートを指定することができます。 -
1番目のアトリビュート名の頭にキャレット文字(
^
)が付けられている場合、フィールドに 入力されていない すべてのアトリビュートは、転送されるべきであると想定されます。もちろん、明示的に入力されているアトリビュートも転送されます。 -
1番目のアトリビュート名の頭にキャレット文字(
^
)が 付けられていない 場合、フィールドに入力されているアトリビュートのみが転送されます。入力されていないアトリビュートと頭にキャレット文字(^
)が付いているアトリビュートは転送されません。
パラメータ ¶
Selection Index
処理する選択を生成する時に使用する入力を指定します。
Attributes ¶
Detail
合成するDetailアトリビュート。
Primitives
合成するPrimitiveアトリビュート。
Points
合成するPointアトリビュート。
Vertices
合成するVertexアトリビュート。
Allow P Attribute
有効にすると、 Points パラメータで使用するパターンをP
アトリビュートに一致させることができます。
Weights ¶
Blend #
ジオメトリ入力の寄与度を制御します。
Operators ¶
Alpha Attribute
アルファマスクを含むアトリビュート。
Compositing Operation
合成に使用するオペレータ。 For the Mean, Max, and Min operators, the specified Alpha Attribute affords a per-point, per-primitive, or per-vertex weight distribution. The Over and Under operators perform two of the standard alpha blending operations where the alpha values are taken from the specified Alpha Attribute.
Mean
Determines the weighted average of the input attributes.
Max
Determines the maximum of the weighted input attributes.
Min
Determines the minimum of the weighted input attributes.
Over
Scales the incoming weighted input attribute by its alpha value and adds it to the current intermediate output attribute scaled by one minus that alpha value:
source * alpha + destination * (1 - alpha)
If the Alpha Attribute does not exist for a particular input, then the alpha mask for that input is assumed to be 1.
Under
Similar to the Over operator, but with the alpha weights swapped:
source * (1 - alpha) + destination * alpha
If the Alpha Attribute does not exist for a particular input, then the alpha mask for that input is assumed to be 1.
Examples ¶
BlendAttr Example for Attribute Composite geometry node
このサンプルでは、Attribute Composite SOPを使ってアトリビュートをブレンドする方法を説明しています。
See also |