Aleksandar Djuric
Aleksandar Djuric

Reputation: 11

Java slow time of animation in Processing

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

Answers (2)

Aleksandar Djuric
Aleksandar Djuric

Reputation: 11

void setup() {frameRate(4);} void draw() {}

Upvotes: 0

T Tse
T Tse

Reputation: 846

You can adjust the framerate by calling the frameRate function.

Upvotes: 2

Related Questions