function sjtouch(x,y,n,m)
touchDown( 0,x, y) sjtime(n,m) touchUp(0) mSleep(t)
end我希望sjtouch(x,y,n,m)时,mSleep(t)默认mSleep(0),又可以自己设置sjtouch(x,y,n,m,t)应该怎么写这个函数。谢谢大佬们
查看更多
function sjtouch(x,y,n,m,t) t = t or 0 touchDown( 0,x, y) sjtime(n,m) touchUp(0) mSleep(t) end
function sjtouch(x,y,n,m,t)if t ~= nil then
t=t
else
t=0 end
touchDown( 0,x, y)sjtime(n,m)touchUp(0)mSleep(t)end变量t可选,可填可不填
发布 问题
分享 好友
手机 浏览
回到 顶部