-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSplashScreen.pde
More file actions
70 lines (49 loc) · 1.43 KB
/
Copy pathSplashScreen.pde
File metadata and controls
70 lines (49 loc) · 1.43 KB
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
61
62
63
64
65
66
67
68
69
70
public class SplashScreen implements IScene {
private PImage menuImage;
private final int INSTRUCTION_PAGE_MARKER = 0;
private final int SQL_EDITOR_SCENE_MARKER = 1;
private int timerTick = 0;
public void render() {
image(menuImage, 0, 0);
// After some certain interval move to another scene
int millis = millis();
if( millis >= timerTick){
InstructionScene scene = new InstructionScene();
sceneManager.setScene(scene);
}
}
public void load() {
// Load the image asset for the menu page
loop();
timerTick = millis() * 3;
menuImage = loadImage("assets/ui/splash.jpg");
bootPlayer.play();
}
public void unload() {
//Unload the image
menuImage = null;
}
public void addTuioObjectHook(TuioObject tobj) {
}
public void removeTuioObjectHook(TuioObject tobj) {
}
//an object was moved on the table surface
public void updateTuioObjectHook(TuioObject tobj) {
}
//this is called when a new cursor is detected
public void addTuioCursorHook(TuioCursor tcur) {
}
//a cursor was removed from the table
public void removeTuioCursorHook(TuioCursor tcur) {
}
public void updateTuioCursorHook(TuioCursor tcur) {
}
public void addTuioBlobHook(TuioBlob tblb) {
}
public void updateTuioBlobHook(TuioBlob tblb) {
}
public void removeTuioBlobHook(TuioBlob tblb) {
}
public void refreshHook(TuioTime frameTime) {
}
}