VSE: add option to display half of audio waveform

Default is "full" waveform display. Adds overlay option to display absolute
value of the signal as upper half only. Part of design task #115274

Pull Request: https://projects.blender.org/blender/blender/pulls/116344
This commit is contained in:
Aras Pranckevicius
2023-12-19 18:52:38 +01:00
committed by Aras Pranckevicius
parent 4805b4f13f
commit a95dd8438d
4 changed files with 48 additions and 5 deletions

View File

@@ -324,6 +324,8 @@ class SEQUENCER_PT_sequencer_overlay(Panel):
layout.label(text="Waveforms")
layout.row().prop(overlay_settings, "waveform_display_type", expand=True)
layout.label(text="Waveform Style")
layout.row().prop(overlay_settings, "waveform_display_style", expand=True)
class SEQUENCER_MT_view_cache(Menu):