马拉松-极限入口隐藏,顺带修改翻译文件/模式列表中模式的顺序

This commit is contained in:
MrZ626
2020-12-13 15:32:30 +08:00
parent 4d7da801a7
commit ca8cf27371
11 changed files with 72 additions and 71 deletions

View File

@@ -99,6 +99,8 @@ function scene.keyDown(k)
LOG.print("GammaCorrect: "..(gc.isGammaCorrect()and"on"or"off"),"warn")
elseif v==114514 or v==1919810 or v==1145141919810 then
error()
elseif v==200 then
loadGame("marathon_bfmax",true)
elseif v==670 then
SCR.print()
end

View File

@@ -14,9 +14,9 @@ end
function scene.mouseDown(x,y)
if x>230 and x<1050 then
if math.abs(y-800+time*40)<70 then
loadGame("sprintLock")
loadGame("sprintLock",true)
elseif math.abs(y-2160+time*40)<70 then
loadGame("sprintFix")
loadGame("sprintFix",true)
end
end
end
@@ -30,9 +30,9 @@ function scene.keyDown(k)
SCN.back()
elseif kb.isDown("s")then
if k=="l"then
loadGame("sprintLock")
loadGame("sprintLock",true)
elseif k=="f"then
loadGame("sprintFix")
loadGame("sprintFix",true)
end
end
end