-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTimePilot.Menu.debug.js
44 lines (43 loc) · 1.22 KB
/
TimePilot.Menu.debug.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
/* global define */
define("TimePilot.Menus.debug", [
"TimePilot.userOptions"
], function (
userOptions
) {
var debug = {
name: "Debug Options",
buttons: {
showHitboxes: {
name: "Show Hit Boxes",
type: "toggle",
setValue: function () {},
getValue: function () {}
},
showSpriteCorners: {
name: "Show Sprite Corners",
type: "toggle",
setValue: function () {},
getValue: function () {}
},
showSpriteCenters: {
name: "Show Sprite Centers",
type: "toggle",
setValue: function () {},
getValue: function () {}
},
showPlayerCoordinates: {
name: "Show Player Coordinates",
type: "toggle",
setValue: function () {},
getValue: function () {}
},
invincible: {
name: "Invinicibility",
type: "toggle",
setValue: function () {},
getValue: function () {}
}
}
};
return debug;
});