Type:BlendMode
From Resonite Wiki
More actions
| Name: | BlendMode |
| Type: | FrooxEngine.BlendMode
|
This article or section is a stub. You can help the Resonite wiki by expanding it.
| 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). |