LightProbe: Fix description of influence type

This commit is contained in:
Clément Foucault 2018-11-04 19:57:23 +01:00
parent 83b3b540de
commit 3927fbf98e
1 changed files with 1 additions and 1 deletions

View File

@ -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);