how will you repeat object on the screen
Answers
Answered by
1
Answer:
setup() happens once. its where you do things you only want to happen once like apply settings and initialization
draw() happens repeatedly, over and over, called once every frame.
you should not be calling loadImage in draw. There is no need to reload an image you already loaded. put your loadImage calls in setup()
your for loop has a semicolon which means you just disabled the for loop. It does nothing. the following two lines are not part of the for loop any more
ellipseMode() does not need set more than once if you're never changing it to something else. set it in setup()
Explanation:
I hope it will be very helpful for you
list me as a brilliant
(❁´◡`❁)
..
Similar questions