Enum ColorTransparencyMode

Defines whether the ColorMaterial is transparent and how it blends with the background.

enum class Microsoft::Azure::RemoteRendering::ColorTransparencyMode : int32_t

Values

Name Value Description Remarks
ColorTransparencyMode::Opaque 0 The material is opaque, but still allows for hard cutouts when the flag ColorMaterialFeatures.AlphaClipped is specified.
ColorTransparencyMode::AlphaBlend 1 The material is semi-transparent through alpha-blending, using the combined albedo's alpha for opacity.
ColorTransparencyMode::Additive 2 The material uses additive blending.

See also