微调游戏中重开和暂停按钮位置

This commit is contained in:
MrZ626
2021-02-12 02:38:11 +08:00
parent afcef53669
commit e28132c291
2 changed files with 4 additions and 4 deletions

View File

@@ -239,8 +239,8 @@ function scene.draw()
gc.pop()
end
scene.widgetList={
WIDGET.newKey{name="restart",fText="R",x=410,y=40,w=60,font=40,code=restart},
WIDGET.newKey{name="pause",fText="II",x=870,y=40,w=60,font=40,code=function()pauseGame()end},
WIDGET.newKey{name="restart",fText="R",x=380,y=35,w=60,font=40,code=restart},
WIDGET.newKey{name="pause",fText="II",x=900,y=35,w=60,font=40,code=function()pauseGame()end},
}
return scene