I'm using the current unminified build on master. With it, I'm trying to put together a little app where I can change an FM('glockenspiel')'s properties over time. At some unspecified point in the future, I'd also like to access the value of certain properties. The changing part I think is working, but every time I try to access the properties value I get a function returned. e.g:
var a = FM('glockenspiel');
a.amp = 0.6;
console.log(a.amp);
Hey @charlieroberts,
I'm using the current unminified build on master. With it, I'm trying to put together a little app where I can change an
FM('glockenspiel')
's properties over time. At some unspecified point in the future, I'd also like to access the value of certain properties. The changing part I think is working, but every time I try to access the properties value I get afunction
returned. e.g:Chrome says this in the console:
How do I get the just number value
0.6
?Thanks for your time!