控制台输入布尔值的两个命令改成on/off,tas会修改设置,重启游戏依然生效

This commit is contained in:
MrZ626
2021-08-18 15:33:28 +08:00
parent eaf4e3d71e
commit 9e6295e008
4 changed files with 20 additions and 15 deletions

View File

@@ -357,34 +357,34 @@ local commands={}do
}
commands.wireframe={
code=function(bool)
if bool=="true"or bool=="false"then
gc.setWireframe(bool=="true")
if bool=="on"or bool=="off"then
gc.setWireframe(bool=="on")
log("Wireframe: "..(gc.isWireframe()and"on"or"off"))
else
log{C.A,"Usage: wireframe <true|false>"}
log{C.A,"Usage: wireframe <on|off>"}
end
end,
description="Turn on/off wireframe mode",
details={
"Enable or disable wireframe drawing mode.",
"",
"Usage: wireframe <true|false>",
"Usage: wireframe <on|off>",
},
}
commands.gammacorrect={
code=function(bool)
if bool=="true"or bool=="false"then
love._setGammaCorrect(bool=="true")
if bool=="on"or bool=="off"then
love._setGammaCorrect(bool=="on")
log("GammaCorrect: "..(gc.isGammaCorrect()and"on"or"off"))
else
log{C.A,"Usage: gammacorrect <true|false>"}
log{C.A,"Usage: gammacorrect <on|off>"}
end
end,
description="Turn on/off gamma correction",
details={
"Enable or disable gamma correction.",
"",
"Usage: gammacorrect <true|false>",
"Usage: gammacorrect <on|off>",
},
}
commands.fn={
@@ -732,15 +732,20 @@ local commands={}do
},
}
commands.tas={
code=function()
ALLOWTAS=true
log{C.lC,"TAS mode on"}
code=function(bool)
if bool=="on"or bool=="off"then
SETTING.allowTAS=bool=="on"
FILE.save(SETTING,'conf/settings')
log("Allow TAS: "..bool)
else
log{C.A,"Usage: tas <on|off>"}
end
end,
description="Allow you to use TAS tool",
details={
"Allow you to use TAS tool, a TAS button will show up at the pause menu",
"",
"Usage: tas",
"Usage: tas <on|off>",
},
}