remoteUI-java (only osx atm)
in
Library and Tool Development
•
4 months ago
hi everyone!
i've written a library for ofxRemoteUI to be friends with processing.
this is quite useful for prototyping situations where you don't need or want a full blown ui, but managing parameters via the keyboard sucks too.
all you really have to do is mark your variables as public and annotate them.
- // old:
- int myVar = 6;
// new:
@Param( min=5, max=10)
public int myVar = 6;
done :)
then there's a second app that takes care of displaying the parameters nicely.
currently i only did this for me, but if there's interest i don't mind documenting it a bit better.
processing-library:
http://superduper.org/processing/remoteUI/
remoteUI client (to manage the params):
https://github.com/armadillu/ofxRemoteUI (open up the workspace file in ofxRemoteUI OSX Client and run the client from there)