xxxxxxxxxx
96
let android;
let backg;
let y1 = 0;
let y2;
let bluePlat;
let brownPlat;
let greenPlat;
let whitePlat;
let scrollSpeed = 1;
function preload() {
android = loadImage("android.png");
backg = loadImage("background.png");
bluePlat = loadImage("blue_platform.png");
brownPlat = loadImage("brown_platform.png");
greenPlat = loadImage("green_platform.png");
whitePlat = loadImage("white_platform.png");
}
class green_Platform {
constructor(game){
this.game = game;
this.w = 90;
this.h = 15;
this.x = floor(random() * ((this.game.w - this.w) - 0 + 1) )
}
}
class Game {
constructor(width, height) {
this.w = width;
this.h = height;
this.gameStart = false;
}
draw() {
if (this.gameStart == false) {
textAlign(CENTER);
textFont("Helvetica", 20);
fill("black");
stroke(254, 177, 109);
strokeWeight(6);
text("Press Enter To Start", 200, 200);
} else {
image(backg, 0, y1, width, height);
image(backg, 0, y2, width, height);
y1 -= scrollSpeed;
y2 -= scrollSpeed;
if (y1 < -height) {
y1 = height;
}
if (y2 < -height) {
y2 = height;
}
}
}
update() {
}
}
let game;
function setup() {
createCanvas(532, windowHeight);
game = new Game();
}
function draw() {
game.draw();
if (game.gameStart == true) {
game.update();
}
}
function keyPressed() {
if (keyCode === UP_ARROW) {
game.gameStart = true;
}
}