mirror of
https://codeberg.org/armin/tcdweb.git
synced 2026-09-01 05:30:45 +02:00
Add cutoff max falloff decay selector
Introduce a new dropdown to control how fast the max-cutoff marker decays toward the live cutoff on the realtime spectrum. Options: Off — max cutoff holds indefinitely (manual reset only) Slow — 1% gap reduction per frame Medium — 3% gap reduction per frame Fast — 8% gap reduction per frame Previously the max-cutoff line only went up and never came back down unless the user clicked Reset.
This commit is contained in:
parent
e159b76e0d
commit
1972add309
2 changed files with 13 additions and 0 deletions
|
|
@ -38,6 +38,12 @@
|
|||
<option value="medium" selected>Hold: Medium</option>
|
||||
<option value="fast">Hold: Fast</option>
|
||||
</select>
|
||||
<select id="cutoffFalloff" class="window-select" title="Cutoff max falloff decay">
|
||||
<option value="off" selected>Cutoff: Off</option>
|
||||
<option value="slow">Cutoff: Slow</option>
|
||||
<option value="medium">Cutoff: Medium</option>
|
||||
<option value="fast">Cutoff: Fast</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="chart-container" style="position:relative">
|
||||
<canvas id="waveformChart"></canvas>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue