Remove the rectangle displaying the color underneath the color wheel. Anyone know how to do this?
Thanks
Remove the rectangle displaying the color underneath the color wheel. Anyone know how to do this?
Thanks
Stop drawing it?
Draw over it?
Without seeing the code that drew it, we are at a complete loss.
Looks like that is hard-coded into the ColorWheel view.
You could fork the library, or you could try to draw on top of it as suggested above – or you could create your own separate render method for it and call that instead (set it not visible, then pass it to your custom render method).
tried that already, with a
did all loose against the “focused” colorwheel
An example of how to customize your own controller copied from the ColorWheel code (e.g. ColorWheel2) is in this cp5 example:
Controlp5ExtendController
Unfortunately you cannot simply override the existing display method because it is in a private inner class.