Filter beatmap by favorites (過濾 beatmap 依照收藏數) (osu! website only) (僅限 osu! 網站)
当前为
Filter beatmap by favorites
const options = {
// global options
global: {
// opacity of filtered beatmap [0~1]
opacity: 0.15,
},
// favorites filter
favorites: {
// enable or disable [true/false]
enable: true,
// favorites
favorites: 100,
},
};

根據收藏數量過濾圖譜
const options = {
// 全域選項
global: {
// 過濾後的 beatmap 透明度 [0~1]
opacity: 0.15,
},
// 收藏數過濾
favorites: {
// 啟用或停用 [true/false]
enable: true,
// 收藏數
favorites: 100,
},
};
同上