@@ -333,12 +333,12 @@ function draw_window_preferences() {
333
333
// if (draw_radiobox(x1 + 40, y1 + (theme = 3) * 22 + 164 + 16 + 20 + 20, theme == 1, "90s", "Use the 90s theme.")) {theme = 1 change_theme()}
334
334
// if (draw_radiobox(x1 + 40, y1 + (theme = 3) * 22 + 164 + 16 + 20 + 20 + 20, theme == 3, "Fluent", "Use the fluent theme.")) {theme = 3 change_theme()}
335
335
if (language != 1 ) {
336
- if (!isplayer) if ( draw_checkbox (x1 + 40 , y1 + (theme = 3 ) * 22 + 74 + 16 + 20 + 20 + 20 + 20 + 25 , blackout, " Blackout mode" , " Makes the workspace background solid black, so you can\n remove in your video editor when recording the screen." , false , true )) blackout = !blackout
336
+ if (draw_checkbox (x1 + 40 , y1 + (theme = 3 ) * 22 + 74 + 16 + 20 + 20 + 20 + 20 + 25 , blackout, " Blackout mode" , " Makes the workspace background solid black, so you can\n remove in your video editor when recording the screen." , false , true )) blackout = !blackout
337
337
if (draw_checkbox (x1 + 40 , y1 + (theme = 3 ) * 22 + 74 + 16 + 20 + 20 + 25 , windowsound, " Navigation sound" , " Whether to play sound effects when navigating the interface.\n (Only applies to the Fluent theme.)" , (theme != 3 ), true )) windowsound = !windowsound
338
338
if (draw_checkbox (x1 + 40 , y1 + (theme = 3 ) * 22 + 74 + 16 + 20 + 25 , fdark, " Dark mode" , " Whether to use darker colors on the interface.\n (Only applies to the Fluent theme.)" , (theme != 3 ), true )) {fdark = !fdark if (fdark) window_set_darkmode () else window_unset_darkmode ()}
339
339
if (draw_checkbox (x1 + 40 , y1 + (theme = 3 ) * 22 + 74 + 16 + 20 + 20 + 20 + 25 , acrylic, " Transparency effects" , " Whether to show transparency effects on the interface.\n (Only applies to the Fluent theme.)" , (theme != 3 ), true )) {acrylic = !acrylic change_theme ()}
340
340
} else {
341
- if (!isplayer) if ( draw_checkbox (x1 + 40 , y1 + (theme = 3 ) * 22 + 74 + 16 + 20 + 20 + 20 + 20 + 25 , blackout, " 全黑模式" , " 使背景变为纯黑色,可以用于剪辑时扣掉。" , false , true )) blackout = !blackout
341
+ if (draw_checkbox (x1 + 40 , y1 + (theme = 3 ) * 22 + 74 + 16 + 20 + 20 + 20 + 20 + 25 , blackout, " 全黑模式" , " 使背景变为纯黑色,可以用于剪辑时扣掉。" , false , true )) blackout = !blackout
342
342
if (draw_checkbox (x1 + 40 , y1 + (theme = 3 ) * 22 + 74 + 16 + 20 + 20 + 25 , windowsound, " 界面音效" , " 是否在浏览时播放音效。\n (仅限 Fluent 主题)" , (theme != 3 ), true )) windowsound = !windowsound
343
343
if (draw_checkbox (x1 + 40 , y1 + (theme = 3 ) * 22 + 74 + 16 + 20 + 25 , fdark, " 暗色模式" , " 是否在界面上使用暗色调。\n (仅限 Fluent 主题)" , (theme != 3 ), true )) {fdark = !fdark if (fdark) window_set_darkmode () else window_unset_darkmode ()}
344
344
if (draw_checkbox (x1 + 40 , y1 + (theme = 3 ) * 22 + 74 + 16 + 20 + 20 + 20 + 25 , acrylic, " 透明效果" , " 是否在界面上显示透明效果。\n (仅限 Fluent 主题)" , (theme != 3 ), true )) {acrylic = !acrylic change_theme ()}
0 commit comments