Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/properties_data_curve.py
| Show First 20 Lines • Show All 261 Lines • ▼ Show 20 Lines | def draw(self, context): | ||||
| col = layout.column() | col = layout.column() | ||||
| col.prop(curve, "path_duration", text="Frames") | col.prop(curve, "path_duration", text="Frames") | ||||
| col.prop(curve, "eval_time") | col.prop(curve, "eval_time") | ||||
| # these are for paths only | # these are for paths only | ||||
| col.separator() | col.separator() | ||||
| col.prop(curve, "use_path_clamp") | |||||
| col.prop(curve, "use_path_follow") | col.prop(curve, "use_path_follow") | ||||
| class DATA_PT_active_spline(CurveButtonsPanelActive, Panel): | class DATA_PT_active_spline(CurveButtonsPanelActive, Panel): | ||||
| bl_label = "Active Spline" | bl_label = "Active Spline" | ||||
| bl_options = {'DEFAULT_CLOSED'} | bl_options = {'DEFAULT_CLOSED'} | ||||
| def draw(self, context): | def draw(self, context): | ||||
| ▲ Show 20 Lines • Show All 236 Lines • Show Last 20 Lines | |||||