-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTimePilot.Menu.pause.js
42 lines (39 loc) · 1.14 KB
/
TimePilot.Menu.pause.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
/* global define */
define("TimePilot.Menus.pause", [
"TimePilot.userOptions"
], function (
userOptions
) {
var pause = {
name: "Paused",
buttons: {
musicVolume: {
name: "Music Volume",
options: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11],
type: "slider",
setValue: function () {},
getValue: function () {}
},
effectsVolume: {
name: "Effects Volume",
type: "slider",
options: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11],
setValue: function () {},
getValue: function () {}
},
controllerType: {
name: "Contoller",
type: "enum",
options: {
keyboard1: "Keyboard Set 1",
keyboard2: "Keyboard Set 2",
joystick: "Joystick/Gamepad",
touch: "Touch Screen"
},
setValue: function () {},
getValue: function () {}
}
}
};
return pause;
});