What the best practices for saving Gibberwocky scripts within Max patches?
And is there an automated way to reload them?
If not do people just save them as text files outside of the patch (or maybe inside via a comment or something?) and manually reload them?
Also, I’m brand new to the language and I’ve got my first patch hooked up and communicating. I’m trying to make values smoothly transition using .seq instead of jump though. The line documentation is hurting my head a bit. I tried to modify the example but it’s still jumping the ratio message and not interpolating it. Any ideas?
l = line( 4, 2.9, 3.1 )
message( 'ratio' ).seq(l, 2 )
l.start.seq( [2,3.8,4], 2 )
l.period.seq( [1/2,1],1 )
Thank you.