-
Notifications
You must be signed in to change notification settings - Fork 0
/
background.js
60 lines (56 loc) · 1.08 KB
/
background.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
class Background {
constructor() {
this.images = [
{
src: loadImage("./images/BG001.png"),
x: 0,
speed: 0
},
{
src: loadImage("./images/BG002.png"),
x: 0,
speed: 1
},
{
src: loadImage("./images/BG003.png"),
x: 0,
speed: 2
},
{
src: loadImage("./images/BG004.png"),
x: 0,
speed: 3
},
// {
// src: loadImage("./images/BG005.png"),
// x: 0,
// speed: 0.5
// },
{
src: loadImage("./images/BG006.png"),
x: 0,
speed: 4
},
{
src: loadImage("./images/BG007.png"),
x: 0,
speed: 8
}
];
}
move(img) {
image(img.src, img.x, 0, width, 450);
image(img.src, img.x + width, 0, width, 450);
img.x -= img.speed * levelSpeed;
if (img.x <= -width) {
img.x = 0;
}
}
draw() {
// const c = color(174, 222, 203);
// background(c);
for (let i = 0; i < this.images.length; i++) {
this.move(this.images[i]);
}
}
}