Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Foucault <foucault.clem@gmail.com>2018-11-04 21:57:23 +0300
committerClément Foucault <foucault.clem@gmail.com>2018-11-05 18:31:11 +0300
commit3927fbf98e756ddad14f941bd886b69b3eb49c98 (patch)
treef2f513ab5e8d0439564dff3fccd1439af3ae1da6 /source/blender/makesrna/intern/rna_lightprobe.c
parent83b3b540de382afbbc5aeef23e584ed358a6c6d7 (diff)
LightProbe: Fix description of influence type
Diffstat (limited to 'source/blender/makesrna/intern/rna_lightprobe.c')
-rw-r--r--source/blender/makesrna/intern/rna_lightprobe.c2
1 files changed, 1 insertions, 1 deletions
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);