Play several notes at the same time that is not a Chord #217
Answered
by
melanchall
seanjmiller
asked this question in
Q&A
-
How can I play several notes at the same time not using the PatternBuilder.Chord()? |
Beta Was this translation helpful? Give feedback.
Answered by
melanchall
Aug 30, 2022
Replies: 1 comment 1 reply
-
You can use patternBuilder
.Note(...)
.MoveToPreviousTime()
.Note(...)
.MoveToPreviousTime()
.Note(...)
.MoveToPreviousTime(); All these notes will start at the same time. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
seanjmiller
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use
MoveToPreviousTime
after eachNote
method call:All these notes will start at the same time.