adds fifth and fourth down voices
This commit is contained in:
parent
7b3f212500
commit
b1900c8dde
2 changed files with 17 additions and 0 deletions
|
@ -84,6 +84,21 @@ float voice_envelope(float frequency) {
|
|||
case duty_octave_down:
|
||||
polyphony_rate = 0;
|
||||
note_timbre = (envelope_index % 2) * .125 + .375 * 2;
|
||||
if ((envelope_index % 4) == 0)
|
||||
note_timbre = 0.5;
|
||||
if ((envelope_index % 8) == 0)
|
||||
note_timbre = 0;
|
||||
break;
|
||||
case duty_fifth_down:
|
||||
note_timbre = 0.5;
|
||||
if ((envelope_index % 5) == 0)
|
||||
note_timbre = 0.75;
|
||||
break;
|
||||
case duty_fourth_down:
|
||||
if ((envelope_index % 12) == 0)
|
||||
note_timbre = 0.25;
|
||||
else
|
||||
note_timbre = 0.5;
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue