add source code to menu

This commit is contained in:
yuuki
2023-12-03 05:37:10 +00:00
parent a720742eac
commit 8718d18a40

View File

@@ -70,6 +70,13 @@ class SongSelect{
border: ["#fde9df", "#ce7553"], border: ["#fde9df", "#ce7553"],
outline: "#ce7553" outline: "#ce7553"
}, },
// カスタム曲スキン
"sourceCode": {
sort: 0,
background: "blue",
border: ["lightblue", "darkblue"],
outline: "darkblue",
},
"default": { "default": {
sort: null, sort: null,
background: "rgb(236,236,236,.2)", background: "rgb(236,236,236,.2)",
@@ -189,6 +196,13 @@ class SongSelect{
category: strings.random category: strings.random
}) })
// カスタムメニュー
this.songs.push({
title: "ソースコード",
skin: this.songSkin.sourceCode,
action: "sourceCode",
});
this.songs.push({ this.songs.push({
title: strings.back, title: strings.back,
skin: this.songSkin.back, skin: this.songSkin.back,
@@ -798,6 +812,13 @@ class SongSelect{
}else if(currentSong.action === "plugins"){ }else if(currentSong.action === "plugins"){
this.toPlugins() this.toPlugins()
} }
// カスタムメニューの実行処理
else if (currentSong.action === "sourceCode") {
this.playSound("se_don");
setTimeout(() => {
location.href = "https://codeberg.org/mofusky/play-taiko-web";
}, 500);
}
} }
this.pointer(false) this.pointer(false)
} }