Help with the new selectInput()
in
Programming Questions
•
1 year ago
The new selectInput() (and friends selectOutput() and selectFolder()) have a strange way of operating, and I'm not getting my head around the concept of how they work, it seems to be very confusing. You can
see the changes here.
What I'd like to do is something simple, like
- PShape shapeToUse;
- void setup() {
- size(200, 200);
- }
- void draw() {
- shapeToUse = loadShape("somethingIHaveSelected");
- shape(somethingIHaveSelected);
- }
1