PercussionNoteOn
Turns on a percussion note.
Syntax
-
PercussionNoteOn(k, v)
-
k
is a percussion key -
v
is an integer in [0, 127]
-
Description
PercussionNoteOn(k, v)
turns on the percussion key k
with relative intensity v
.
Examples
for(k, 1, 5, (PercussionNoteOn("Acoustic Bass Drum", 75); sleep(.1)))
for(k, 35, 81, (PercussionNoteOn(k, 75); sleep(.1)))