hi,
i updated controlP5 to version 0.2.8
issues fixed:
* controllers that extend ControllerGroup (e.g. scrollList or textarea) can now be moved to controlWindows. use method
moveTo instead of setWindow and setTab.
* added a new class to draw into controlWindows. the class is called ControlWindowCanvas, it is an abstract class and needs to be extended by your own canvas class. see the
ControlP5canvas example.
* controlWindows are only updated by default when they are in focus. this can be changed by using controlWindow.setUpdateMode(ControlWindow.NORMAL);
the window is then update continuously. switch back by using
controlWindow.setUpdateMode(ControlWindow.ECONOMIC);
to save cpu.
* different renderers (OPENGL, JAVA2D, etc.) can be used for a controlWindow. howto take a look at the
documentation (theRenderer parameter is a String such as "OPENGL", "JAVA2D", etc).
* frameRate can be set for a controlWindow.
* controlP5.register(Controller) is public now. havnt tested it though.
best,
andi