Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_sequencer.py
| Show First 20 Lines • Show All 2,601 Lines • ▼ Show 20 Lines | def poll(cls, context): | ||||
| return cls.has_preview(context) | return cls.has_preview(context) | ||||
| # NOTE: this is just a wrapper around the generic GP Panel | # NOTE: this is just a wrapper around the generic GP Panel | ||||
| # But, it should only show up when there are images in the preview region | # But, it should only show up when there are images in the preview region | ||||
| class SEQUENCER_PT_custom_props(SequencerButtonsPanel, PropertyPanel, Panel): | class SEQUENCER_PT_custom_props(SequencerButtonsPanel, PropertyPanel, Panel): | ||||
| COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_WORKBENCH'} | COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_EEVEE', 'BLENDER_WORKBENCH','BLENDER_WORKBENCH_NEXT'} | ||||
| _context_path = "active_sequence_strip" | _context_path = "active_sequence_strip" | ||||
| _property_type = (bpy.types.Sequence,) | _property_type = (bpy.types.Sequence,) | ||||
| bl_category = "Strip" | bl_category = "Strip" | ||||
| class SEQUENCER_PT_snapping(Panel): | class SEQUENCER_PT_snapping(Panel): | ||||
| bl_space_type = 'SEQUENCE_EDITOR' | bl_space_type = 'SEQUENCE_EDITOR' | ||||
| bl_region_type = 'HEADER' | bl_region_type = 'HEADER' | ||||
| ▲ Show 20 Lines • Show All 112 Lines • Show Last 20 Lines | |||||