aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgretchen <gretchen@gnar.cool>2019-11-18 22:56:31 -0800
committergretchen <gretchen@gnar.cool>2019-11-18 22:56:31 -0800
commitfd549d7540a04677e1b10c8f324c958cfba18f1e (patch)
tree0ac501f4fc37bb93c75491b511708b050709b48a
parentadb657e192e3396cd06de9da50e08d29d60b26d2 (diff)
downloadrhodes-fd549d7540a04677e1b10c8f324c958cfba18f1e.tar.gz
rhodes-fd549d7540a04677e1b10c8f324c958cfba18f1e.zip
Tweak parameters; more ideasv0.2
-rw-r--r--README.org4
-rw-r--r--lib/Engine_Rhodes.sc4
2 files changed, 4 insertions, 4 deletions
diff --git a/README.org b/README.org
index d385e1b..806b799 100644
--- a/README.org
+++ b/README.org
@@ -1,7 +1,7 @@
* rhodes
-FM rhodes simulation for norns.
+midi FM rhodes simulation for norns.
Adapted for norns from [[https://sccode.org/1-522][this supercollider snippet]] by user 'snapizz', which is adapted from [[https://github.com/thestk/stk/blob/master/include/Rhodey.h][STK's rhodey]], which Perry R. Cook and Gary P. Scavone adapted from a Yamaha TX81z algorithm.
-Needs some visualization, and some parameters (tremolo and vibrato? chorus? brightness?). Email patches to [[mailto:gretchen@gnar.cool][<gretchen@gnar.cool>]].
+Needs some visualization, some parameters (tremolo and vibrato? chorus? brightness?), maybe mod wheel and pitch bend support. Email patches to [[mailto:gretchen@gnar.cool][<gretchen@gnar.cool>]].
diff --git a/lib/Engine_Rhodes.sc b/lib/Engine_Rhodes.sc
index 02da1af..ad55cd3 100644
--- a/lib/Engine_Rhodes.sc
+++ b/lib/Engine_Rhodes.sc
@@ -17,8 +17,8 @@ Engine_Rhodes : CroneEngine {
| // standard meanings
out = 0, freq = 440, gate = 1, pan = 0, amp = 0.1,
// all of these range from 0 to 1
- vel = 0.8, modIndex = 0.2, mix = 0.2,
- lfoSpeed = 0.4, lfoDepth = 0.1
+ vel = 0.8, modIndex = 0.1, mix = 0.2,
+ lfoSpeed = 0.2, lfoDepth = 0.1
|
var env1, env2, env3, env4;
var osc1, osc2, osc3, osc4, snd;