-
Notifications
You must be signed in to change notification settings - Fork 14
/
mod.json
168 lines (168 loc) · 4.13 KB
/
mod.json
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
{
"geode": "4.1.1",
"gd": {
"win": "2.2074",
"android": "2.2074",
"mac": "2.2074",
"ios": "2.2074"
},
"version": "v2.0.4",
"id": "beat.click-sound",
"name": "Click Sounds",
"developers": [
"Beat",
"Cooper",
"Viper",
"Weebify",
"Uproxide"
],
"description": "Plays a sound when you press a jump button.",
"resources": {
"files": [
"resources/**/*.ogg",
"resources/**/*.mp3",
"resources/**/*.wav"
],
"sprites": [
"resources/**/*.png"
]
},
"links": {
"community": "https://discord.gg/tu98bsGA32",
"source": "https://github.com/BeatACVR/geode-clicksound",
"homepage": "https://clicksounds.xyz/"
},
"tags": [
"universal",
"gameplay",
"editor",
"online",
"customization"
],
"dependencies": [
{
"id": "geode.node-ids",
"version": ">=v1.8.1",
"importance": "required"
}
],
"incompatibilities": [
{
"id": "beat.click_sounds_lite",
"importance": "conflicting",
"version": ">=v1.0.0"
}
],
"settings": {
"clicksounds-section": {
"name": "Click Sounds",
"description": "This category is for settings that are for <cr>Click Sounds</c>",
"type": "title"
},
"offline-mode": {
"name": "Offline Mode",
"description": "Skips downloading the Click Sounds index, <cr>if that's what you prefer.</c>\n\n<cr>Only enable this if you know what you're doing.</c>",
"type": "bool",
"default": false,
"requires-restart": true
},
"enable-clicksounds": {
"name": "Enable Click Sounds",
"type": "bool",
"default": true
},
"click-volume": {
"name": "Click sounds volume (%)",
"type": "int",
"default": 50,
"min": 0,
"max": 100,
"control": {
"slider": true
},
"enable-if": "setting:enable-clicksounds"
},
"selection-clicks": {
"type": "custom:selectionclicks",
"name": "Click Sounds",
"default": "Useful",
"clicksound" : true,
"enable-if": "setting:enable-clicksounds"
},
"clicksound-effect": {
"type": "custom:clicksoundeffect",
"name": "Test Sound",
"clicksound" : true,
"enable-if": "setting:enable-clicksounds"
},
"release-section": {
"name": "Release Sounds",
"description": "This category is for settings that are for <cr>Release Sounds</c>",
"type": "title"
},
"enable-releasesounds": {
"name": "Enable Release Sounds",
"type": "bool",
"default": false
},
"release-volume": {
"name": "Release sounds volume (%)",
"type": "int",
"default": 50,
"min": 0,
"max": 100,
"control": {
"slider": true
},
"enable-if": "setting:enable-releasesounds"
},
"selection-release": {
"type": "custom:selectionclicks",
"name": "Release Sounds",
"clicksound" : false,
"default": "Useful",
"enable-if": "setting:enable-releasesounds"
},
"releasesound-effect": {
"type": "custom:clicksoundeffect",
"name": "Test Sound",
"clicksound" : false,
"enable-if": "setting:enable-releasesounds"
},
"Miscellaneous-section": {
"name": "Miscellaneous",
"description": "This category is for settings that are <cr>Miscellaneous</c> and are extra features",
"type": "title"
},
"only-on-jump": {
"name": "Only play on jump",
"description": "Doesn't play sound on movement of platformer keys.",
"type": "bool",
"default": true
},
"settings-button": {
"name": "Show settings button",
"description": "When enabled, a settings button appears in the pause menu.",
"type": "bool",
"default": true
},
"sfx-semitone": {
"name": "Pitch of the sounds",
"description": "Determines the pitch of click/release sounds using semitones. The Default semitones is set 0 (2 semitones = 1 Octave)",
"type": "int",
"default": 0,
"min": -2,
"max": 2,
"control": {
"slider": true
}
},
"offline-mode": {
"name": "Offline Mode",
"description": "Skips downloading the Click Sounds index, <cr>if that's what you prefer.</c>\n\n<cr>Only enable this if you know what you're doing.</c>",
"type": "bool",
"default": false,
"requires-restart": true
}
}
}