A bit more helpful doc strings on the curve render resolution properties.

This commit is contained in:
Lukas Tönne 2014-05-12 08:07:33 +02:00
parent 3d7d930e31
commit 204ba76ee0
1 changed files with 2 additions and 2 deletions

View File

@ -1416,14 +1416,14 @@ static void rna_def_curve(BlenderRNA *brna)
RNA_def_property_range(prop, 0, 1024);
RNA_def_property_ui_range(prop, 0, 64, 1, -1);
RNA_def_property_ui_text(prop, "Render Resolution U",
"Surface resolution in U direction used while rendering (zero skips this property)");
"Surface resolution in U direction used while rendering (zero uses preview resolution)");
prop = RNA_def_property(srna, "render_resolution_v", PROP_INT, PROP_NONE);
RNA_def_property_int_sdna(prop, NULL, "resolv_ren");
RNA_def_property_ui_range(prop, 0, 64, 1, -1);
RNA_def_property_range(prop, 0, 1024);
RNA_def_property_ui_text(prop, "Render Resolution V",
"Surface resolution in V direction used while rendering (zero skips this property)");
"Surface resolution in V direction used while rendering (zero uses preview resolution)");
prop = RNA_def_property(srna, "eval_time", PROP_FLOAT, PROP_NONE);