-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsettings.json
More file actions
104 lines (104 loc) · 2.5 KB
/
Copy pathsettings.json
File metadata and controls
104 lines (104 loc) · 2.5 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"general" :
{
"properties" :
{
"separator_0" :
{
"type" : "separator",
"value" : "Menu"
},
"transparent_menu" :
{
"order" : 1,
"text" : "Transparent Menu",
"type" : "bool",
"value" : true,
"eval" : "TouchMenu.editTransparencyMenu(obj['main']['transparent_menu']);"
},
"transparent_open_menu_button" :
{
"order" : 2,
"text" : "Transparent Open Menu Button",
"type" : "bool",
"value" : false,
"eval" : ""
},
"blackout_menu" :
{
"order" : 3,
"text" : "Blackout In Menu",
"type" : "bool",
"value" : true,
"eval" : "TouchMenu.editBlackoutMenu(obj['main']['blackout_menu']);"
},
"always_full_menu" :
{
"order" : 4,
"text" : "Always Full Menu",
"type" : "bool",
"value" : false,
"eval" : "TouchMenu.editSize(obj['main']['always_full_menu']);"
},
"extended_menu" :
{
"order" : 5,
"text" : "Extended Menu",
"type" : "bool",
"value" : true,
"eval" : "TouchMenu.editExtendedMenu(obj['main']['extended_menu']);"
},
"separator_1" :
{
"type" : "separator",
"value" : "Animation"
},
"scale_animation" :
{
"condition" : "obj['main']['debug_mode'] == true",
"order" : 10,
"text" : "Scale",
"type" : "slider",
"min" : 100,
"max" : 500,
"value" : 100,
"eval" : "let zlvl = obj['main']['scale_animation']/100; document.getElementById('animation').style.zoom = zlvl; document.getElementById('animation').style.transform = 'scale('+zlvl+')'"
},
"separator_2" :
{
"type" : "separator",
"value" : "Editor",
"blocked" : true
},
"editor_eval_evil_mode" :
{
"order" : 20,
"text" : "Editor Eval Evil Mode [w]",
"type" : "bool",
"value" : false,
"eval" : "",
"blocked" : true
},
"separator_3" :
{
"type" : "separator",
"value" : "Debug"
},
"debug_mode" :
{
"order" : 30,
"text" : "Debug Mode",
"type" : "bool",
"value" : false,
"eval" : "if(obj['main']['debug_mode']) { document.getElementById('debug').style.display = 'block'; ResetLoop(); } else document.getElementById('debug').style.display = 'none';"
},
"separator_4" :
{
"type" : "separator",
"value" : ""
}
}
},
"title" : "Settings",
"type" : "settings"
}