Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_dopesheet.py
| Show First 20 Lines • Show All 520 Lines • ▼ Show 20 Lines | def draw(self, _context): | ||||
| layout.operator_menu_enum("action.interpolation_type", "type", text="Interpolation Mode") | layout.operator_menu_enum("action.interpolation_type", "type", text="Interpolation Mode") | ||||
| layout.operator_menu_enum("action.easing_type", "type", text="Easing Mode") | layout.operator_menu_enum("action.easing_type", "type", text="Easing Mode") | ||||
| layout.separator() | layout.separator() | ||||
| layout.operator("action.clean").channels = False | layout.operator("action.clean").channels = False | ||||
| layout.operator("action.clean", text="Clean Channels").channels = True | layout.operator("action.clean", text="Clean Channels").channels = True | ||||
| layout.operator("action.sample") | layout.operator("action.sample") | ||||
| layout.separator() | |||||
| layout.operator("graph.euler_filter", text="Discontinuity (Euler) Filter") | |||||
| class DOPESHEET_MT_key_transform(Menu): | class DOPESHEET_MT_key_transform(Menu): | ||||
| bl_label = "Transform" | bl_label = "Transform" | ||||
| def draw(self, _context): | def draw(self, _context): | ||||
| layout = self.layout | layout = self.layout | ||||
| layout.operator("transform.transform", text="Move").mode = 'TIME_TRANSLATE' | layout.operator("transform.transform", text="Move").mode = 'TIME_TRANSLATE' | ||||
| ▲ Show 20 Lines • Show All 304 Lines • Show Last 20 Lines | |||||