11 lines
216 B
Python
11 lines
216 B
Python
from synthnotehelper import *
|
|
|
|
|
|
@synth_test
|
|
def gen(synth):
|
|
l = LFO(sweep, rate=4, once=True)
|
|
yield [l]
|
|
n = Note(128, ring_waveform=sine, ring_frequency=6, ring_bend=l)
|
|
synth.press(n)
|
|
yield 1 / 4
|