Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_sequencer.py
| Show First 20 Lines • Show All 1,447 Lines • ▼ Show 20 Lines | def draw(self, context): | ||||
| split = sub.split(factor=0.4, align=True) | split = sub.split(factor=0.4, align=True) | ||||
| split.alignment = 'RIGHT' | split.alignment = 'RIGHT' | ||||
| split.label(text="Volume") | split.label(text="Volume") | ||||
| split.prop(scene, "audio_volume", text="") | split.prop(scene, "audio_volume", text="") | ||||
| sub.use_property_decorate = False | sub.use_property_decorate = False | ||||
| if strip.scene_input == 'CAMERA': | if strip.scene_input == 'CAMERA': | ||||
| layout = layout.column(heading="Show") | layout = layout.column(heading="Show") | ||||
| layout.prop(strip, "use_grease_pencil", text="Grease Pencil") | layout.prop(strip, "use_annotations", text="Annotations") | ||||
| if scene: | if scene: | ||||
| # Warning, this is not a good convention to follow. | # Warning, this is not a good convention to follow. | ||||
| # Expose here because setting the alpha from the 'Render' menu is very inconvenient. | # Expose here because setting the alpha from the 'Render' menu is very inconvenient. | ||||
| layout.prop(scene.render, "film_transparent") | layout.prop(scene.render, "film_transparent") | ||||
| class SEQUENCER_PT_mask(SequencerButtonsPanel, Panel): | class SEQUENCER_PT_mask(SequencerButtonsPanel, Panel): | ||||
| bl_label = "Mask" | bl_label = "Mask" | ||||
| ▲ Show 20 Lines • Show All 871 Lines • Show Last 20 Lines | |||||