Please bear with me, I'm new to programming.
I want to trigger a one second animation once the mouseX is greater than 100.
I've added a "for" loop to generate the animation, but I see that you cannot see the transition in a for loop. I can only see the start and end.
How can I animate the ball (code below) from ellipse(20,20,20,20) to ellipse(400,400,400,400) and be able to see the transition?
Thanks so much!!!
I want to trigger a one second animation once the mouseX is greater than 100.
I've added a "for" loop to generate the animation, but I see that you cannot see the transition in a for loop. I can only see the start and end.
How can I animate the ball (code below) from ellipse(20,20,20,20) to ellipse(400,400,400,400) and be able to see the transition?
Thanks so much!!!
- void setup(){
- size(400,400);
- smooth();
- }
- void draw(){
- background(0);
- if (mouseX > 100) { //Once mouse gets to 100, begin animation.
- for (int i=20; i<400; i++){ //Animate ball
- ellipse(i,i,i,i);
- }
- } else {
- ellipse(20,20,20,20);
- }
- }
1