Creating Println effect in main window
in
Programming Questions
•
2 years ago
Hello,
I am new to processing and I was wondering if anyone could tell me how to create the effect of a println in the main app window. I want to create a scrolling numbers per frame in the main window.
The following code is an example of the effect I want, however I need the println text to display in the main window.
Any help you can provide would be very much appreciated.
- void setup() {
size(800,800);
float rand;
}
void draw() {
rand = random(100);
println(rand);
}
1