xxxxxxxxxx
15
/*
try to reproduce the 'twinkling stars' effect in the gif. You should use the Star class in order to do this. Think of the starry sky as a group of star objects that change color over time.If you can't reproduce it exactly, come as close as you can.
*/
function setup() {
createCanvas(600, 600);
}
function draw() {
background(0);
}
class Star {
}