mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-27 15:50:10 +01:00
Disable Debug button for some Nyquist effects
Plug-ins changed: adjustable-fade.ny crossfadetracks.ny highpass.ny limiter.ny lowpass.ny notch.ny tremolo.ny
This commit is contained in:
@@ -5,6 +5,7 @@
|
||||
;categories "http://lv2plug.in/ns/lv2core#ModulatorPlugin"
|
||||
;name "Tremolo..."
|
||||
;manpage "Tremolo"
|
||||
;debug disabled
|
||||
;action "Applying Tremolo..."
|
||||
;author "Steve Daulton"
|
||||
;copyright "Released under terms of the GNU General Public License version 2"
|
||||
@@ -19,11 +20,8 @@
|
||||
|
||||
;control wave "Waveform type" choice "sine,triangle,sawtooth,inverse sawtooth,square" 0
|
||||
;control phase "Starting phase (degrees)" int "" 0 -180 180
|
||||
;control wet "Wet level (percent)" int "" 40 0 100
|
||||
;control lfo "Frequency (Hz)" real "" 4 0 10
|
||||
|
||||
; Limit to sensible range
|
||||
(setq lfo (min 1000 (max lfo (/ (get-duration 1)))))
|
||||
;control wet "Wet level (percent)" int "" 40 1 100
|
||||
;control lfo "Frequency (Hz)" float-text "" 4 0.001 1000
|
||||
|
||||
; Convert % to linear
|
||||
(setq wet (/ wet 200.0))
|
||||
|
||||
Reference in New Issue
Block a user