0.11.2:Pong(操作错误导致只能用覆盖文件代替合并分支)(非0.11.2最终版)

This commit is contained in:
MrZ626
2020-10-06 18:09:45 +08:00
parent 71fec8b497
commit 09d78e52f6
39 changed files with 1250 additions and 822 deletions

View File

@@ -178,7 +178,7 @@ function love.touchreleased(id,x,y)
end
if(x-lastX)^2+(y-lastY)^2<26 then
if touchClick[SCN.cur]then
touchClick[SCN.cur](x,y,k)
touchClick[SCN.cur](x,y)
end
sysFX.newRipple(.3,x,y,30)
end
@@ -375,17 +375,17 @@ function love.errorhandler(msg)
needDraw=true
elseif E=="focus"then
needDraw=true
elseif E=="touchDown"or E=="keyDown"or E=="mouseDown"then
elseif E=="touchpressed"or E=="keypressed"or E=="mousepressed"then
if count<3 then
count=count+1
SFX.play("ready")
else
local code=loadstring(love.system.getClipboardText())
if code then
if code()then
SFX.play("reach")
end
SFX.play("start")
code()
SFX.play("reach")
else
SFX.play("finesseError")
end
count=0
end