Correction to tooltip, object texture space is supported by both SVM and OSL

This commit is contained in:
Sergey Sharybin 2015-01-27 23:53:50 +05:00
parent 9aefe08711
commit 1bfeabf4c5

@ -3652,7 +3652,7 @@ static void def_sh_tex_coord(StructRNA *srna)
RNA_def_property_pointer_sdna(prop, NULL, "id");
RNA_def_property_struct_type(prop, "Object");
RNA_def_property_flag(prop, PROP_EDITABLE);
RNA_def_property_ui_text(prop, "Object", "Use coordinates from this object (for object texture coordinates output, currently only for SVM shading)");
RNA_def_property_ui_text(prop, "Object", "Use coordinates from this object (for object texture coordinates output)");
RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update");
prop = RNA_def_property(srna, "from_dupli", PROP_BOOLEAN, PROP_NONE);