Type:BlendMode: Difference between revisions

From Resonite Wiki
Created page with "{{Infobox Enum |name=BlendMode |type=FrooxEngine.BlendMode }} {{stub}} {{Table EnumValues |Opaque|0| |Cutout|1| |Alpha|2| |Transparent|3| |Additive|4| |Multiply|5| }}"
 
Add explanation expect Alpha and Transparent
Tag: 2017 source edit
 
Line 7: Line 7:


{{Table EnumValues
{{Table EnumValues
|Opaque|0|
|Opaque|0|Opaque discards alpha channel information.
|Cutout|1|
|Cutout|1|Cutout sees if the value of alpha channel is above threshold; If above, draw with RGB. Otherwise, draw as if the corresponding pixel was replaced with transparent.
|Alpha|2|
|Alpha|2|TODO: write how this is different from Transparent
|Transparent|3|
|Transparent|3|TODO: write how this is different from Alpha
|Additive|4|
|Additive|4|If multiple semi-transparent draw is overlapped, it make the final output to be the RGB value of the "addition" of their RGB values.
|Multiply|5|
|Multiply|5|If multiple semi-transparent draw is overlapped, it make the final output to be the RGB value of the "multiplicative" of their RGB values.
}}
}}

Latest revision as of 11:41, 3 January 2025

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 Opaque discards alpha channel information.
Cutout 1 Cutout sees if the value of alpha channel is above threshold; If above, draw with RGB. Otherwise, draw as if the corresponding pixel was replaced with transparent.
Alpha 2 TODO: write how this is different from Transparent
Transparent 3 TODO: write how this is different from Alpha
Additive 4 If multiple semi-transparent draw is overlapped, it make the final output to be the RGB value of the "addition" of their RGB values.
Multiply 5 If multiple semi-transparent draw is overlapped, it make the final output to be the RGB value of the "multiplicative" of their RGB values.