From 1c2c16e50df3dc93220579ff9d4114fa33a933bd Mon Sep 17 00:00:00 2001 From: MrZ626 <1046101471@qq.com> Date: Tue, 1 Jun 2021 14:21:44 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E8=87=AA=E5=AE=9A=E4=B9=89?= =?UTF-8?q?=E6=B8=B8=E6=88=8F=E5=9C=BA=E5=9C=B0=E9=AB=98=E5=BA=A6=E4=B8=8A?= =?UTF-8?q?=E9=99=90=E5=8F=96=E5=80=BC=E8=8C=83=E5=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- parts/scenes/customGame.lua | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/parts/scenes/customGame.lua b/parts/scenes/customGame.lua index d3d5c0d2..374f39cf 100644 --- a/parts/scenes/customGame.lua +++ b/parts/scenes/customGame.lua @@ -14,8 +14,13 @@ local sList={ life={0,1,2,3,5,10,15,26,42,87,500}, pushSpeed={1,2,3,5,15}, fieldH={1,2,3,4,6,8,10,15,20,30,50,100}, - heightLimit={2,3,4,6,8,10,15,20,30,50,100,150,200,1e99}, + heightLimit={2,3,4,6,8,10,15,20,30,40,70,100,150,200,1e99}, bufferLimit={4,6,10,15,20,40,100,1e99}, + + drop={0,.125,.25,.5,1,2,3,4,5,6,7,8,9,10,12,14,16,18,20,25,30,40,60,180,1e99}, + lock={0,1,2,3,4,5,6,7,8,9,10,12,14,16,18,20,25,30,40,60,180,1e99}, + wait={0,1,2,3,4,5,6,7,8,10,15,20,30,60}, + fall={0,1,2,3,4,5,6,7,8,10,15,20,30,60}, } local scene={} @@ -202,10 +207,10 @@ scene.widgetList={ WIDGET.newSelector{name="heightLimit", x=450,y=710,w=260,color='S',list=sList.heightLimit, disp=CUSval("heightLimit"), code=CUSsto("heightLimit")}, WIDGET.newSelector{name="bufferLimit", x=450,y=790,w=260,color='B',list=sList.bufferLimit, disp=CUSval("bufferLimit"), code=CUSsto("bufferLimit")}, - WIDGET.newSelector{name="drop", x=730,y=330,w=260,color='O',list={0,.125,.25,.5,1,2,3,4,5,6,7,8,9,10,12,14,16,18,20,25,30,40,60,180,1e99},disp=CUSval("drop"),code=CUSsto("drop")}, - WIDGET.newSelector{name="lock", x=730,y=410,w=260,color='O',list={0,1,2,3,4,5,6,7,8,9,10,12,14,16,18,20,25,30,40,60,180,1e99},disp=CUSval("lock"),code=CUSsto("lock")}, - WIDGET.newSelector{name="wait", x=730,y=520,w=260,color='G',list={0,1,2,3,4,5,6,7,8,10,15,20,30,60},disp=CUSval("wait"),code=CUSsto("wait")}, - WIDGET.newSelector{name="fall", x=730,y=600,w=260,color='G',list={0,1,2,3,4,5,6,7,8,10,15,20,30,60},disp=CUSval("fall"),code=CUSsto("fall")}, + WIDGET.newSelector{name="drop", x=730,y=330,w=260,color='O',list=sList.drop,disp=CUSval("drop"),code=CUSsto("drop")}, + WIDGET.newSelector{name="lock", x=730,y=410,w=260,color='O',list=sList.lock,disp=CUSval("lock"),code=CUSsto("lock")}, + WIDGET.newSelector{name="wait", x=730,y=520,w=260,color='G',list=sList.wait,disp=CUSval("wait"),code=CUSsto("wait")}, + WIDGET.newSelector{name="fall", x=730,y=600,w=260,color='G',list=sList.fall,disp=CUSval("fall"),code=CUSsto("fall")}, --Copy / Paste / Start WIDGET.newButton{name="copy", x=1070, y=300,w=310,h=70,color='lR',font=25,code=pressKey"cC"},