VCVRack / VCV-Prototype

Other
130 stars 22 forks source link

Possible to change potentiometer position from scripting language? #41

Closed mxa closed 3 years ago

mxa commented 3 years ago

Is it possible to change the poti position from withing the scripting language? I didn't see any code or examples for that. (Race condition issues might be a problem if the new value is being sent out)

AndrewBelt commented 3 years ago

Yes, params are read/write. Simply set block->params[i] = ....

mxa commented 3 years ago

@clwe