File tree Expand file tree Collapse file tree 5 files changed +22
-14
lines changed Expand file tree Collapse file tree 5 files changed +22
-14
lines changed Original file line number Diff line number Diff line change 162
162
},
163
163
"ui_logo_logo" : {
164
164
"type" : " dropdown" ,
165
- "text" : " Logo Matrix " ,
165
+ "text" : " Logo" ,
166
166
"value" : 0 ,
167
167
"items" : [
168
168
" None" ,
193
193
]
194
194
},
195
195
"ui_logo_customlogo" : {
196
- "text" : " Custom Logo Matrix URL (SVG/PNG)" ,
197
- "help" : " Enter custom logo matrix url (svg/png)" ,
196
+ "text" : " Custom Logo URL (SVG/PNG)" ,
197
+ "help" : " Enter custom logo url (svg/png)" ,
198
198
"type" : " textbox" ,
199
199
"value" : " "
200
200
},
201
201
"ui_logo_preservecolor" : {
202
- "text" : " Preserve Logo Matrix Color" ,
202
+ "text" : " Preserve Logo Color" ,
203
203
"type" : " checkbox" ,
204
204
"value" : false
205
205
},
206
206
"ui_logo_scale" : {
207
207
"max" : 100 ,
208
208
"min" : 0 ,
209
209
"step" : 1 ,
210
- "text" : " Logo Matrix Scale" ,
210
+ "text" : " Logo Scale" ,
211
211
"type" : " slider" ,
212
212
"value" : 10
213
213
},
214
214
"ui_logo_positionx" : {
215
215
"max" : 2500 ,
216
216
"min" : -2500 ,
217
217
"step" : 1 ,
218
- "text" : " Logo Matrix Position X" ,
218
+ "text" : " Logo Position X" ,
219
219
"type" : " slider" ,
220
220
"value" : 0
221
221
},
222
222
"ui_logo_positiony" : {
223
223
"max" : 2500 ,
224
224
"min" : -2500 ,
225
225
"step" : 1 ,
226
- "text" : " Logo Matrix Position Y" ,
226
+ "text" : " Logo Position Y" ,
227
227
"type" : " slider" ,
228
228
"value" : 0
229
229
},
Original file line number Diff line number Diff line change 4
4
< title > Wallpaper - NeoMatrix</ title >
5
5
< meta name ="author " content ="IP.AF ">
6
6
< meta charset ="utf-8 ">
7
- < link rel ="stylesheet " type ="text/css " href ="./index.css " media ="screen " />
8
- < script src ="https://cdn.jsdelivr.net/npm /lil-gui@ 0.19 "> </ script >
9
- < script type ="text/javascript " src ="./index.js "> </ script >
7
+ < link rel ="stylesheet " type ="text/css " href ="./css/ index.css " media ="screen " />
8
+ < script src ="./js /lil-gui- 0.19.js "> </ script >
9
+ < script type ="text/javascript " src ="./js/ index.js "> </ script >
10
10
</ head >
11
11
12
12
< body >
Original file line number Diff line number Diff line change @@ -106,13 +106,13 @@ window.onload = function () {
106
106
window . wallpaperRegisterAudioListener ( ( audioArray ) => {
107
107
return frequencyArray = audioArray ;
108
108
} ) ;
109
+ else if ( navigator . userAgent . startsWith ( "Sucrose" ) )
110
+ window . SucroseAudioData = function ( audioArray ) {
111
+ frequencyArray = audioArray . Data ;
112
+ } ;
109
113
else
110
114
drawGui ( ) ;
111
115
112
- window . SucroseAudioData = function ( audioArray ) {
113
- frequencyArray = audioArray . Data ;
114
- } ;
115
-
116
116
//MARK: GUI
117
117
function drawGui ( ) {
118
118
const params = getUrlParams ( ) ;
You can’t perform that action at this time.
0 commit comments