移除maxNext设置项

This commit is contained in:
MrZ626
2020-12-14 11:33:40 +08:00
parent 7a33814886
commit a4348f9646
10 changed files with 1 additions and 11 deletions

View File

@@ -26,7 +26,6 @@
ihs:提前Hold
irs:提前旋转
ims:提前移动
maxNext:最大next数
skin:方块颜色,包含25个整数(1~16)的table
face:方块朝向,包含25个整数(0~3)的table

View File

@@ -9,7 +9,6 @@ local default_setting={
"das","arr",
"sddas","sdarr",
"ihs","irs","ims",
"maxNext",
"swap",
--"face","skin",
}

View File

@@ -226,7 +226,6 @@ SETTING={
das=10,arr=2,dascut=0,
sddas=0,sdarr=2,
ihs=true,irs=true,ims=true,
maxNext=6,
RS="TRS",
swap=true,

View File

@@ -259,7 +259,6 @@ return{
key="Key Mappings",
touch="Touch Settings",
reTime="Start Delay",
maxNext="Next Queue Length",
RS="Rotation System",
layout="Layout",
autoPause="Pause when focus is lost",

View File

@@ -239,7 +239,6 @@ return{
key="Touches",
touch="Boutons virtuels",
reTime="Délai de démarrage",
maxNext="Nombre de prévisualisations de pièces",
-- RS="Rotation System",
layout="Skin, orientations, etc.",
autoPause="Mettre en pause en cas de perte de focus",

View File

@@ -242,7 +242,6 @@ return{
key="Teclas",
touch="Controles Táctiles",
reTime="Retraso de Inicio",
maxNext="Cantidad de Pzas. Siguientes",
-- RS="Rotation System",
layout="Diseño",
autoPause="Pausar cuando la ventana no está enfocada",

View File

@@ -141,7 +141,6 @@ return{
key="=?",
touch="_?",
reTime="3-2-1",
maxNext="=123",
RS="''?",
layout="=-=-=",
autoPause="A||",

View File

@@ -262,7 +262,6 @@ return{
key="键位设置",
touch="触屏设置",
reTime="开局等待时间",
maxNext="最大预览数量",
RS="旋转系统",
layout="外观",
autoPause="失去焦点自动暂停",

View File

@@ -268,7 +268,6 @@ local function applyGameEnv(P)--Finish gameEnv processing
ENV.das=max(ENV.das,ENV.mindas)
ENV.arr=max(ENV.arr,ENV.minarr)
ENV.sdarr=max(ENV.sdarr,ENV.minsdarr)
ENV.nextCount=min(ENV.nextCount,SETTING.maxNext)
if ENV.sequence~="bag"and ENV.sequence~="loop"then
ENV.bagLine=false

View File

@@ -27,8 +27,7 @@ scene.widgetList={
WIDGET.newButton{name="key", x=640, y=220, w=320,h=80, color="lGreen", font=35,code=WIDGET.lnk_goScene("setting_key")},
WIDGET.newButton{name="touch", x=990, y=220, w=320,h=80, color="lBlue", font=35,code=WIDGET.lnk_goScene("setting_touch")},
WIDGET.newSlider{name="reTime", x=350, y=340, w=300,unit=10, font=30,disp=WIDGET.lnk_SETval("reTime"), code=WIDGET.lnk_SETsto("reTime"),show=function(S)return(.5+S.disp()*.25).."s"end},
WIDGET.newSlider{name="maxNext", x=350, y=440, w=300,unit=6, font=30,disp=WIDGET.lnk_SETval("maxNext"), code=WIDGET.lnk_SETsto("maxNext")},
WIDGET.newSelector{name="RS", x=300, y=540, w=300,color="sea",list={"TRS","SRS","C2","C2sym","Classic","None"},disp=WIDGET.lnk_SETval("RS"),code=WIDGET.lnk_SETsto("RS")},
WIDGET.newSelector{name="RS", x=500, y=420, w=300,color="sea",list={"TRS","SRS","C2","C2sym","Classic","None"},disp=WIDGET.lnk_SETval("RS"),code=WIDGET.lnk_SETsto("RS")},
WIDGET.newButton{name="layout", x=580, y=540, w=200,h=70, font=35,code=WIDGET.lnk_goScene("setting_skin")},
WIDGET.newSwitch{name="autoPause", x=1080, y=320, font=20,disp=WIDGET.lnk_SETval("autoPause"),code=WIDGET.lnk_SETrev("autoPause")},
WIDGET.newSwitch{name="swap", x=1080, y=380, font=20,disp=WIDGET.lnk_SETval("swap"), code=WIDGET.lnk_SETrev("swap")},