Reputation: 11
I am using Processing Is there anyway I can slow time of my multiple circle drawing animation ? It is supposed to look like a starry night , but it is too fast 😂
Upvotes: 0
Views: 71
void setup() {frameRate(4);} void draw() {}
Reputation: 846
You can adjust the framerate by calling the frameRate function.
Upvotes: 2