xxxxxxxxxx
29
const START = 0;
let MODE = START;
let startButton;
let gdfont;
let startButtonImg;
function preload() {
gdfont = loadFont("geometry-dash-font.ttf");
startButtonImg = loadImage("startButton.png");
}
function setup() {
createCanvas(640, 360);
startButton = new Button(width / 2, height / 2, 100, startButtonImg);
}
function draw() {
background(20, 100, 255);
if (MODE == START) {
textAlign(CENTER);
textSize(45);
fill(0, 255, 0);
stroke(0);
strokeWeight(5);
textFont(gdfont);
text("Geometry Dash", width / 2, 85);
startButton.show();
}
}