aboutsummaryrefslogtreecommitdiff
path: root/blend.py
diff options
context:
space:
mode:
authorAnthony Wang2023-03-19 00:38:23 -0400
committerAnthony Wang2023-03-19 00:38:23 -0400
commitb253cb7a2a62302fbcaf652bacea64e38d664767 (patch)
tree1624c6257d23edf1ee72b646b8d65b7047de9670 /blend.py
parentab901fe0aac50adde6ff4dc3cede73ea16c5eb14 (diff)
Implement different waveforms
Diffstat (limited to 'blend.py')
-rw-r--r--blend.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/blend.py b/blend.py
index b1c9df8..19e45f5 100644
--- a/blend.py
+++ b/blend.py
@@ -250,11 +250,11 @@ yue.process(melody, 24, 4, blend=1)
yue.process(bass, 24, gain=1.5, blend=1)
yue.process(bass, 32, gain=1.5, blend=1)
yue.process(melody, 40, 4, blend=1)
-yue.process(melody2, 40, 4, blend=1)
+yue.process(melody2, 40, 4, blend=1, waveform=yue.seething)
yue.process(bass, 40, gain=1.5, blend=1)
yue.process(bass, 48, gain=1.5, blend=1)
yue.process(melody, 56, 4, blend=1)
-yue.process(melody3, 56, 4, blend=1)
+yue.process(melody3, 56, 4, blend=1, waveform=yue.seething)
yue.process(bass, 56, gain=1.5, blend=1)
yue.process(bass, 64, gain=1.5, blend=1)
yue.process(outro, 72, 4, blend=1)