No need to use "SSAO" for SSAO color

This commit is contained in:
Antonis Ryakiotakis 2015-02-13 12:15:57 +01:00
parent c01a2aa4bb
commit 90a9415c9a
1 changed files with 1 additions and 1 deletions

View File

@ -3911,7 +3911,7 @@ static void rna_def_gpu_ssao_fx(BlenderRNA *brna)
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL);
prop = RNA_def_property(srna, "color", PROP_FLOAT, PROP_COLOR_GAMMA);
RNA_def_property_ui_text(prop, "SSAO Color", "Color for screen space ambient occlusion effect");
RNA_def_property_ui_text(prop, "Color", "Color for screen space ambient occlusion effect");
RNA_def_property_range(prop, 0.0f, 1.0f);
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL);
}