From 5d0ed334fb5da12d558f4cf04fec4e7c1afe5c64 Mon Sep 17 00:00:00 2001 From: Mustafa Date: Sun, 11 May 2014 17:27:58 -0700 Subject: [PATCH] Update Tutorial.md --- oregano/Tutorial.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/oregano/Tutorial.md b/oregano/Tutorial.md index c075d74..4620328 100644 --- a/oregano/Tutorial.md +++ b/oregano/Tutorial.md @@ -51,7 +51,7 @@ You can either use a preset instrument or define your own instrument ;; create a custom instrument ;; can use oscilators and envelopes - (define my-instrument (make-instrument ...) + (define my-instrument (make-instrument ... TODO)) ;; add envelope to instrument @@ -65,6 +65,8 @@ Now that we have an instrument, we can use it to play notes on a specific track. ;; to stop playing (note-off my-piano C#3 track2) + ;; TODO - find a way to turn off a note, or make a note play for a specific time + TODO: - use an instrument to play a note on a track.