-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInstructionScene.pde
More file actions
60 lines (42 loc) · 1.31 KB
/
Copy pathInstructionScene.pde
File metadata and controls
60 lines (42 loc) · 1.31 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
public class InstructionScene implements IScene {
private final int SQL_EDITOR_SCENE_MARKER = 1;
private PImage menuImage;
public void render() {
image(menuImage, 0, 0);
}
public void load() {
// Load the image asset for the menu page
menuImage = loadImage("assets/ui/screen1.jpg");
}
public void unload() {
}
public void addTuioObjectHook(TuioObject tobj) {
int fudicialMarkerDisplayed = tobj.getSymbolID();
if (fudicialMarkerDisplayed == SQL_EDITOR_SCENE_MARKER) {
// Use the SceneManager to Change scene we can use here since this is all a PApplet
SQLEditor sqlScene = new SQLEditor();
sceneManager.setScene(sqlScene);
}
}
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) {
}
}