Hi, I have a GUI composed by several ofParameterGroup. Each of them containing a bunch of ofParameter<float>.
When I draw just one group, like:
gui.getGroup("Animator").draw();
The slider on the float values are broken. It is possible to change the values clicking on the slider, but not by dragging the mouse from left to right or viceversa.
you are not supposed to do that
if you need to draw one control only it shouldn’t be inside a group, once it’s in a group it should only be drawn by the group
I see. The problem is that the GUI is becoming huge and I need to draw only certain groups otherwise there is no space. I am also using loadFromFile to store all the settings, therefore I can not create different ofxPanel.