|
@@ -0,0 +1,17 @@
|
|
|
+class ColorPicker extends UIObject
|
|
|
+{
|
|
|
+ constructor(name, color = "#FFFFFF")
|
|
|
+ {
|
|
|
+ super(name);
|
|
|
+
|
|
|
+ this.P5Element = createColorPicker(color);
|
|
|
+ this.setPosition(0, 0);
|
|
|
+
|
|
|
+ this.connectCallbacks();
|
|
|
+ }
|
|
|
+
|
|
|
+ getColor()
|
|
|
+ {
|
|
|
+ return this.P5Element.color();
|
|
|
+ }
|
|
|
+}
|