Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/properties_data_curve.py
| Show First 20 Lines • Show All 92 Lines • ▼ Show 20 Lines | |||||
| def draw(self, context): | def draw(self, context): | ||||
| layout = self.layout | layout = self.layout | ||||
| layout.use_property_split = True | layout.use_property_split = True | ||||
| text = context.curve | text = context.curve | ||||
| col = layout.column(align=True) | col = layout.column(align=True) | ||||
| col.prop(text, "space_character", text="Character Spacing") | col.prop(text, "space_character") | ||||
| col.prop(text, "space_word", text="Word Spacing") | col.prop(text, "space_word") | ||||
| col.prop(text, "space_line", text="Line Spacing") | col.prop(text, "space_line") | ||||
| layout.separator() | layout.separator() | ||||
| col = layout.column(align=True) | col = layout.column(align=True) | ||||
| col.prop(text, "offset_x", text="Offset X") | col.prop(text, "offset_x", text="Offset X") | ||||
| col.prop(text, "offset_y", text="Y") | col.prop(text, "offset_y", text="Y") | ||||
| ▲ Show 20 Lines • Show All 60 Lines • Show Last 20 Lines | |||||