monkeyswarm / MobMuPlat

MobMuPlat is an iOS & Android app to host PureData patches with custom visual interfaces and hardware access.
www.mobmuplat.com
Other
185 stars 25 forks source link

Steady Sliders? #62

Open tecumses opened 5 years ago

tecumses commented 5 years ago

Is it possible to set the sliders (and knobs) to a steady behaviour so they don't jump on touch?

korakios commented 5 years ago

As you guessed ,it's not possible. Only workaround is complex. You have to calculate the difference between the values and if it's larger than one step ,send back the original value. That means that the slider will jump on the GUI but it will return to the original state. You also have to watch any feedback loops, because sending a value to the GUI will automatically send back the same value

jyg commented 4 years ago

Hello, I have a workarround by using a LCD to paint faders with a pd abstraction that programmatically applies the Steady behaviour. Check listenerHLCD_lin-help.pd in my https://github.com/jyg/mob project.