// Variable vom Datentyp PImage PImage balloon; void setup() { size(800, 500); // Lade Bild mit transparentem Hintergrund balloon = loadImage("balloon.png"); } void draw() { drawSky(); image(balloon, mouseX, mouseY); } void drawSky() { background(193, 217, 255); }