summaryrefslogtreecommitdiffstats
path: root/doc/classes/BaseMaterial3D.xml
diff options
context:
space:
mode:
authorQbieShay <cislaghi.ilaria@gmail.com>2024-05-01 11:12:31 +0200
committerQbieShay <cislaghi.ilaria@gmail.com>2024-05-01 22:24:49 +0200
commite41064388e67cc9bec320ee467757089b150bf20 (patch)
tree154c5a2a6e055c5ab29ecf2f22e0122cfdc5eedc /doc/classes/BaseMaterial3D.xml
parent26738ea20dc5d80be0eba6bb83af73fb996759d6 (diff)
downloadredot-engine-e41064388e67cc9bec320ee467757089b150bf20.tar.gz
reverted naming to premul alpha (no T)
Initially 3d had premulT alpha as a keyword. Since Canvas item uses mixed premul and premult as keywords, 3D is changed as well to keep consistency with 2D. Unfortunately this keeps inconsistency with the internal ENUM.
Diffstat (limited to 'doc/classes/BaseMaterial3D.xml')
-rw-r--r--doc/classes/BaseMaterial3D.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/BaseMaterial3D.xml b/doc/classes/BaseMaterial3D.xml
index 33c58885d8..fc8af02869 100644
--- a/doc/classes/BaseMaterial3D.xml
+++ b/doc/classes/BaseMaterial3D.xml
@@ -610,7 +610,7 @@
The color of the object is multiplied by the background.
</constant>
<constant name="BLEND_MODE_PREMULT_ALPHA" value="4" enum="BlendMode">
- The color of the object is added to the background and the alpha channel is used to mask out the background. This is effectively a hybrid of the blend mix and add modes, useful for FX like fire where you want the flame to add but the smoke to mix. By default, this works with unshaded materials using premultiplied textures. For shaded materials, use the PREMUL_ALPHA_FACTOR built-in so that lighting can be modulated as well.
+ The color of the object is added to the background and the alpha channel is used to mask out the background. This is effectively a hybrid of the blend mix and add modes, useful for effects like fire where you want the flame to add but the smoke to mix. By default, this works with unshaded materials using premultiplied textures. For shaded materials, use the [code]PREMUL_ALPHA_FACTOR[/code] built-in so that lighting can be modulated as well.
</constant>
<constant name="ALPHA_ANTIALIASING_OFF" value="0" enum="AlphaAntiAliasing">
Disables Alpha AntiAliasing for the material.