音效室场景改名launchpad

zx可以代替鼠标
This commit is contained in:
MrZ626
2021-09-27 00:41:32 +08:00
parent f2ffdc9e58
commit 95cff8b986
9 changed files with 11 additions and 9 deletions

View File

@@ -585,7 +585,7 @@ return{
bgm="BGM", bgm="BGM",
sound="SFXs", sound="SFXs",
}, },
sound={ launchpad={
title="SFX Room", title="SFX Room",
bgm="BGM", bgm="BGM",
sfx="SFX", sfx="SFX",

View File

@@ -540,7 +540,7 @@ return{
play="Reprod.", play="Reprod.",
sound="SFXs", sound="SFXs",
}, },
sound={ launchpad={
title="Sala de SFX", title="Sala de SFX",
bgm="BGM", bgm="BGM",
sfx="SFX", sfx="SFX",

View File

@@ -538,7 +538,7 @@ return{
bgm="Musique", bgm="Musique",
-- sound="SFXs", -- sound="SFXs",
}, },
sound={ launchpad={
title="Salon SE", title="Salon SE",
bgm="Musique", bgm="Musique",
sfx="Sons", sfx="Sons",

View File

@@ -578,7 +578,7 @@ return{
play="Jogar", play="Jogar",
-- sound="SFXs", -- sound="SFXs",
}, },
sound={ launchpad={
title="Efeito Sonoros", title="Efeito Sonoros",
bgm="BGM", bgm="BGM",
sfx="SFX", sfx="SFX",

View File

@@ -454,7 +454,7 @@ return{
bgm="#~#", bgm="#~#",
sound="=><=", sound="=><=",
}, },
sound={ launchpad={
title="SFX Room", title="SFX Room",
bgm="#~#", bgm="#~#",
sfx="#!#", sfx="#!#",

View File

@@ -575,7 +575,7 @@ return{
bgm="BGM", bgm="BGM",
sound="音效室", sound="音效室",
}, },
sound={ launchpad={
title="音效室", title="音效室",
bgm="音乐", bgm="音乐",
sfx="音效", sfx="音效",

View File

@@ -589,7 +589,7 @@ return{
bgm="背景音乐", bgm="背景音乐",
sound="特技效果", sound="特技效果",
}, },
sound={ launchpad={
title="特技效果", title="特技效果",
bgm="背景音乐", bgm="背景音乐",
sfx="特技效果", sfx="特技效果",

View File

@@ -121,7 +121,9 @@ scene.mouseDown=scene.touchDown
function scene.keyDown(key,isRep) function scene.keyDown(key,isRep)
if isRep then return end if isRep then return end
if #key==1 then if key=="z"or key=="x"then
love.mousepressed(love.mouse.getPosition())
elseif #key==1 then
if("12345678"):find(key,nil,true)then if("12345678"):find(key,nil,true)then
press(0,tonumber(key)) press(0,tonumber(key))
else else

View File

@@ -57,7 +57,7 @@ function scene.keyDown(key,isRep)
BGM.stop() BGM.stop()
end end
elseif key=="tab"then elseif key=="tab"then
SCN.swapTo('sound','none') SCN.swapTo('launchpad','none')
elseif key=="escape"then elseif key=="escape"then
SCN.back() SCN.back()
end end