音效室场景改名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",
sound="SFXs",
},
sound={
launchpad={
title="SFX Room",
bgm="BGM",
sfx="SFX",

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -121,7 +121,9 @@ scene.mouseDown=scene.touchDown
function scene.keyDown(key,isRep)
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
press(0,tonumber(key))
else

View File

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