[Bf-blender-cvs] [3927fbf98e7] blender2.8: LightProbe: Fix description of influence type

Clément Foucault noreply at git.blender.org
Mon Nov 5 16:31:16 CET 2018


Commit: 3927fbf98e756ddad14f941bd886b69b3eb49c98
Author: Clément Foucault
Date:   Sun Nov 4 19:57:23 2018 +0100
Branches: blender2.8
https://developer.blender.org/rB3927fbf98e756ddad14f941bd886b69b3eb49c98

LightProbe: Fix description of influence type

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

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

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

diff --git a/source/blender/makesrna/intern/rna_lightprobe.c b/source/blender/makesrna/intern/rna_lightprobe.c
index 87d457a9048..85df1c5ba72 100644
--- a/source/blender/makesrna/intern/rna_lightprobe.c
+++ b/source/blender/makesrna/intern/rna_lightprobe.c
@@ -107,7 +107,7 @@ static void rna_def_lightprobe(BlenderRNA *brna)
 	prop = RNA_def_property(srna, "influence_type", PROP_ENUM, PROP_NONE);
 	RNA_def_property_enum_sdna(prop, NULL, "attenuation_type");
 	RNA_def_property_enum_items(prop, parallax_type_items);
-	RNA_def_property_ui_text(prop, "Type", "Type of parallax volume");
+	RNA_def_property_ui_text(prop, "Type", "Type of influence volume");
 	RNA_def_property_update(prop, NC_MATERIAL | ND_SHADING, NULL);
 
 	prop = RNA_def_property(srna, "show_influence", PROP_BOOLEAN, PROP_NONE);



More information about the Bf-blender-cvs mailing list