Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_userpref.py
| Show First 20 Lines • Show All 536 Lines • ▼ Show 20 Lines | class USERPREF_PT_animation_fcurves(AnimationPanel, CenterAlignMixIn, Panel): | ||||
| bl_label = "F-Curves" | bl_label = "F-Curves" | ||||
| def draw_centered(self, context, layout): | def draw_centered(self, context, layout): | ||||
| prefs = context.preferences | prefs = context.preferences | ||||
| edit = prefs.edit | edit = prefs.edit | ||||
| flow = layout.grid_flow(row_major=False, columns=0, even_columns=True, even_rows=False, align=False) | flow = layout.grid_flow(row_major=False, columns=0, even_columns=True, even_rows=False, align=False) | ||||
| flow.prop(edit, "fcurve_unselected_alpha", text="F-Curve Visibility") | flow.prop(edit, "fcurve_unselected_alpha", text="Unselected Opacity") | ||||
| flow.prop(edit, "fcurve_new_auto_smoothing", text="Default Smoothing Mode") | flow.prop(edit, "fcurve_new_auto_smoothing", text="Default Smoothing Mode") | ||||
| flow.prop(edit, "keyframe_new_interpolation_type", text="Default Interpolation") | flow.prop(edit, "keyframe_new_interpolation_type", text="Default Interpolation") | ||||
| flow.prop(edit, "keyframe_new_handle_type", text="Default Handles") | flow.prop(edit, "keyframe_new_handle_type", text="Default Handles") | ||||
| flow.prop(edit, "use_insertkey_xyz_to_rgb", text="XYZ to RGB") | flow.prop(edit, "use_insertkey_xyz_to_rgb", text="XYZ to RGB") | ||||
| flow.prop(edit, "use_anim_channel_group_colors") | flow.prop(edit, "use_anim_channel_group_colors") | ||||
| # ----------------------------------------------------------------------------- | # ----------------------------------------------------------------------------- | ||||
| ▲ Show 20 Lines • Show All 1,814 Lines • Show Last 20 Lines | |||||