show code
void setup () {
size (800, 600);
}
void draw () {
background (0); // Efface l'écran avec la couleur noire
if (keyPressed == true) {
if (key == 'a') {
fill (200, 0, 0);
}
else {
fill (200, 0, 0);
}
ellipse (width / 2, height / 2, 100, 100);
}
}
Laisser un commentaire