it’s nice to see these things coming around after all these times.
one thing to bare in mind, or to at least be careful of …
rnbo (and max/msp) work on a buffer level (128 samples on SSP) , not at sample level…
so you have to take this into account in some places
e.g.
buffer [idx] = buffer [idx-1] * 0.1
this wont work on the first sample of the buffer, since what you really need is sample 127 from the previous sample frame.
(not a great example, but you can see what I mean hopefully)
note: gen~ does not have this, since it works at a sample level.
sharing… where ever you like…
thats why I suggest a topic, so you could just use the link to.
I use GitHub as I need version control,
but you could use something like dropbox, as I do for my releases… if you want to keep it simple.
Im always a fan of keeping is simple, until you need something more complex.
btw: if you just share the rnbo patch, you dont need to worry about plugin name really.
for rename, just look in the CMakeFile.txt, you really just need to change the plugin and manufacture code (4 letters), and you can change the text in quotes.
anyway, do it once, and you’ll see how it looks on the ssp etc.


