-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIntro.pde
49 lines (39 loc) · 907 Bytes
/
Intro.pde
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
public class Intro extends Obj {
public boolean show = true;
public boolean trans = false;
public boolean done = false;
public void _update() {
if (!show) {
if (trans) { transition(); }
return;
}
imageMode(CORNERS);
image(a.intro, 0, 0, v.w, v.h);
if (trans) { transition(); }
}
private void transition() {
if (!transitionIn.done) {
transitionIn.update();
if (transitionIn.opacity > 255) {
show = false;
}
}
else {
if (!transitionOut.done) {
transitionOut.update();
}
}
if (transitionIn.done && transitionOut.done) {
trans = false;
done = true;
transitionIn.reset();
transitionOut.reset();
}
}
public void keyPressed() {
if (!done && keyCode == ENTER) {
trans = true;
}
}
public Intro(Assets a, Variables v) { super(a, v); }
}