enum ETextureBlendType
TextureBlendType specifies which type of blend function to use to blend textures. The blend type function will be used while casting channels during material casting.
Values
| Key | Value | Comment |
|---|---|---|
| Replace | 0 | Replace the current value |
| Add | 1 | Add to the current value |
| Subtract | 2 | Subtract from the current value |
| Multiply | 3 | Multiply by the current value |
| Alpha | 4 | Blend with the current value using alpha blend |
| PreMultipliedAlpha | 5 | Blend with the current value using alpha blend, assuming the new value is already multiplied by the alpha value |
| Over | 6 | Over blend mode |
| In | 7 | In blend mode |
| Out | 8 | Out blend mode |
| AddWAlpha | 9 | Blend with the current value using alpha blend, add to current value |
| SubtractWAlpha | 10 | Blend with the current value using alpha blend, subtract from current value |
| MultiplyWAlpha | 11 | Blend with the current value using alpha blend, multiply by current value |
| Key | Value | Comment |
|---|---|---|
| Replace | 0 | Replace the current value |
| Add | 1 | Add to the current value |
| Subtract | 2 | Subtract from the current value |
| Multiply | 3 | Multiply by the current value |
| Alpha | 4 | Blend with the current value using alpha blend |
| PreMultipliedAlpha | 5 | Blend with the current value using alpha blend, assuming the new value is already multiplied by the alpha value |
| Over | 6 | Over blend mode |
| In | 7 | In blend mode |
| Out | 8 | Out blend mode |
| AddWAlpha | 9 | Blend with the current value using alpha blend, add to current value |
| SubtractWAlpha | 10 | Blend with the current value using alpha blend, subtract from current value |
| MultiplyWAlpha | 11 | Blend with the current value using alpha blend, multiply by current value |
| Key | Value | Comment |
|---|---|---|
| ETextureBlendType_Replace | 0 | Replace the current value |
| ETextureBlendType_Add | 1 | Add to the current value |
| ETextureBlendType_Subtract | 2 | Subtract from the current value |
| ETextureBlendType_Multiply | 3 | Multiply by the current value |
| ETextureBlendType_Alpha | 4 | Blend with the current value using alpha blend |
| ETextureBlendType_PreMultipliedAlpha | 5 | Blend with the current value using alpha blend, assuming the new value is already multiplied by the alpha value |
| ETextureBlendType_Over | 6 | Over blend mode |
| ETextureBlendType_In | 7 | In blend mode |
| ETextureBlendType_Out | 8 | Out blend mode |
| ETextureBlendType_AddWAlpha | 9 | Blend with the current value using alpha blend, add to current value |
| ETextureBlendType_SubtractWAlpha | 10 | Blend with the current value using alpha blend, subtract from current value |
| ETextureBlendType_MultiplyWAlpha | 11 | Blend with the current value using alpha blend, multiply by current value |
