-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguiobject.js
52 lines (41 loc) · 1.14 KB
/
guiobject.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
//@ts-check
var ID = 0;
/**
* Represents a GUIObject with a position, depth, type, and appearance to be added to a GUI object
* Is basically a simpler version of a GameObject
*/
class GUIObject {
constructor(type, x, y, depth){
this.type = type;
this.ID = ID;
this.position = createVector(x, y);
this.x = this.position.x;
this.y = this.position.y;
if(depth!=undefined && depth!=null){
if(!(typeof depth === 'number'))
throw new Error(`Passed GUIObject depth needs to be a number! (got:)${depth}`);
this.depth=depth;
} else {
this.depth=0;
}
ID++;
this.slatedForDeletion = false;
}
/**
* Called from the GUI loop each frame.
*/
update(){
}
/**
* Called after the update() function of each GUIObject from the main GUI loop.
*/
display(){
}
getName(){
let t = `<${this.type}>`;
}
debugLog(stuff){
let t = `<${this.type}>`;
console.log(`GUIObject ID ${this.ID} (${this.getName()!=null?this.getName():t}): ${stuff}`);
}
}