Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Type:BlendMode

From Resonite Wiki
Enum
Name: BlendMode
Type: FrooxEngine.BlendMode
This article or section is a stub. You can help the Resonite wiki by expanding it.
Values
Name Value Description
Opaque 0 Always opaque. Discards alpha channel information.
Cutout 1 Opaque if alpha is above AlphaCutoff, doesn't draw otherwise. Can't display in-between transparency values, but never causes sorting issues.
Alpha 2 True analog transparency. The whole material is affected by the alpha value, including reflections. May cause sorting issues when multiple transparent objects are nearby.
Transparent 3 True analog transparency, Reflections are a separate additive layer, not affected by the alpha value. May cause sorting issues when multiple transparent objects are nearby.
Additive 4 Adds to whatever was drawn behind it (i.e. making it lighter).
Multiply 5 Multiplies whatever was drawn behind it (i.e. making it darker).