[Bf-blender-cvs] [2add3700966] master: Eevee: Modify tooltip about transparent shadow

Clément Foucault noreply at git.blender.org
Wed Mar 27 19:41:48 CET 2019


Commit: 2add3700966b1d621085f9f5bf58b484e12a9e03
Author: Clément Foucault
Date:   Wed Mar 27 19:41:35 2019 +0100
Branches: master
https://developer.blender.org/rB2add3700966b1d621085f9f5bf58b484e12a9e03

Eevee: Modify tooltip about transparent shadow

Mention that this option is only for shadow mapping and not contact shadow.

===================================================================

M	source/blender/makesrna/intern/rna_material.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_material.c b/source/blender/makesrna/intern/rna_material.c
index 5033ba42570..9e8604fb948 100644
--- a/source/blender/makesrna/intern/rna_material.c
+++ b/source/blender/makesrna/intern/rna_material.c
@@ -696,7 +696,7 @@ void RNA_def_material(BlenderRNA *brna)
 	prop = RNA_def_property(srna, "transparent_shadow_method", PROP_ENUM, PROP_NONE);
 	RNA_def_property_enum_sdna(prop, NULL, "blend_shadow");
 	RNA_def_property_enum_items(prop, prop_eevee_blend_shadow_items);
-	RNA_def_property_ui_text(prop, "Transparent Shadow", "Shadow method for transparent material");
+	RNA_def_property_ui_text(prop, "Transparent Shadow", "Shadow mapping method for transparent material");
 	RNA_def_property_update(prop, 0, "rna_Material_draw_update");
 
 	prop = RNA_def_property(srna, "alpha_threshold", PROP_FLOAT, PROP_FACTOR);



More information about the Bf-blender-cvs mailing list