Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_curve.c
| Show First 20 Lines • Show All 92 Lines • ▼ Show 20 Lines | |||||
| RNA_def_property_float_sdna(prop, NULL, "smallcaps_scale"); | RNA_def_property_float_sdna(prop, NULL, "smallcaps_scale"); | ||||
| RNA_def_property_ui_range(prop, 0, 1.0, 1, 2); | RNA_def_property_ui_range(prop, 0, 1.0, 1, 2); | ||||
| RNA_def_property_ui_text(prop, "Small Caps", "Scale of small capitals"); | RNA_def_property_ui_text(prop, "Small Caps", "Scale of small capitals"); | ||||
| RNA_def_property_update(prop, 0, "rna_Curve_update_data"); | RNA_def_property_update(prop, 0, "rna_Curve_update_data"); | ||||
| prop = RNA_def_property(srna, "space_line", PROP_FLOAT, PROP_NONE); | prop = RNA_def_property(srna, "space_line", PROP_FLOAT, PROP_NONE); | ||||
| RNA_def_property_float_sdna(prop, NULL, "linedist"); | RNA_def_property_float_sdna(prop, NULL, "linedist"); | ||||
| RNA_def_property_range(prop, 0.0f, 10.0f); | RNA_def_property_range(prop, 0.0f, 10.0f); | ||||
| RNA_def_property_ui_text(prop, "Distance between lines of text", ""); | RNA_def_property_ui_text(prop, "Line Spacing", "Distance between lines of text"); | ||||
| RNA_def_property_update(prop, 0, "rna_Curve_update_data"); | RNA_def_property_update(prop, 0, "rna_Curve_update_data"); | ||||
| prop = RNA_def_property(srna, "space_word", PROP_FLOAT, PROP_NONE); | prop = RNA_def_property(srna, "space_word", PROP_FLOAT, PROP_NONE); | ||||
| RNA_def_property_float_sdna(prop, NULL, "wordspace"); | RNA_def_property_float_sdna(prop, NULL, "wordspace"); | ||||
| RNA_def_property_range(prop, 0.0f, 10.0f); | RNA_def_property_range(prop, 0.0f, 10.0f); | ||||
| RNA_def_property_ui_text(prop, "Spacing between words", ""); | RNA_def_property_ui_text(prop, "Word Spacing", "Spacing between words"); | ||||
| RNA_def_property_update(prop, 0, "rna_Curve_update_data"); | RNA_def_property_update(prop, 0, "rna_Curve_update_data"); | ||||
| prop = RNA_def_property(srna, "space_character", PROP_FLOAT, PROP_NONE); | prop = RNA_def_property(srna, "space_character", PROP_FLOAT, PROP_NONE); | ||||
| RNA_def_property_float_sdna(prop, NULL, "spacing"); | RNA_def_property_float_sdna(prop, NULL, "spacing"); | ||||
| RNA_def_property_range(prop, 0.0f, 10.0f); | RNA_def_property_range(prop, 0.0f, 10.0f); | ||||
| RNA_def_property_ui_text(prop, "Global spacing between characters", ""); | RNA_def_property_ui_text(prop, "Character Spacing", "Global spacing between characters"); | ||||
| RNA_def_property_update(prop, 0, "rna_Curve_update_data"); | RNA_def_property_update(prop, 0, "rna_Curve_update_data"); | ||||
| prop = RNA_def_property(srna, "shear", PROP_FLOAT, PROP_NONE); | prop = RNA_def_property(srna, "shear", PROP_FLOAT, PROP_NONE); | ||||
| RNA_def_property_float_sdna(prop, NULL, "shear"); | RNA_def_property_float_sdna(prop, NULL, "shear"); | ||||
| RNA_def_property_range(prop, -1.0f, 1.0f); | RNA_def_property_range(prop, -1.0f, 1.0f); | ||||
| RNA_def_property_ui_text(prop, "Shear", "Italic angle of the characters"); | RNA_def_property_ui_text(prop, "Shear", "Italic angle of the characters"); | ||||
| RNA_def_property_update(prop, 0, "rna_Curve_update_data"); | RNA_def_property_update(prop, 0, "rna_Curve_update_data"); | ||||
| ▲ Show 20 Lines • Show All 92 Lines • Show Last 20 Lines | |||||