因玩家类结构修改故一个绘图函数要更换调用方法
This commit is contained in:
@@ -15,7 +15,7 @@ return{
|
|||||||
local r=40-P.stat.row
|
local r=40-P.stat.row
|
||||||
if r<0 then r=0 end
|
if r<0 then r=0 end
|
||||||
mStr(r,69,335)
|
mStr(r,69,335)
|
||||||
P:drawTargetLine(r)
|
PLY.draw.drawTargetLine(P,r)
|
||||||
end,
|
end,
|
||||||
score=function(P)return{P.stat.row<=200 and P.stat.row or 200,P.stat.time}end,
|
score=function(P)return{P.stat.row<=200 and P.stat.row or 200,P.stat.time}end,
|
||||||
scoreDisp=function(D)return D[1].." Lines "..toTime(D[2])end,
|
scoreDisp=function(D)return D[1].." Lines "..toTime(D[2])end,
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ return{
|
|||||||
local r=40-P.stat.row
|
local r=40-P.stat.row
|
||||||
if r<0 then r=0 end
|
if r<0 then r=0 end
|
||||||
mStr(r,69,335)
|
mStr(r,69,335)
|
||||||
P:drawTargetLine(r)
|
PLY.draw.drawTargetLine(P,r)
|
||||||
end,
|
end,
|
||||||
score=function(P)return{P.stat.row<=200 and P.stat.row or 200,P.stat.time}end,
|
score=function(P)return{P.stat.row<=200 and P.stat.row or 200,P.stat.time}end,
|
||||||
scoreDisp=function(D)return D[1].." Lines "..toTime(D[2])end,
|
scoreDisp=function(D)return D[1].." Lines "..toTime(D[2])end,
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ return{
|
|||||||
local r=40-P.stat.row
|
local r=40-P.stat.row
|
||||||
if r<0 then r=0 end
|
if r<0 then r=0 end
|
||||||
mStr(r,69,335)
|
mStr(r,69,335)
|
||||||
P:drawTargetLine(r)
|
PLY.draw.drawTargetLine(P,r)
|
||||||
end,
|
end,
|
||||||
score=function(P)return{P.stat.time,P.stat.piece}end,
|
score=function(P)return{P.stat.time,P.stat.piece}end,
|
||||||
scoreDisp=function(D)return toTime(D[1]).." "..D[2].." Pieces"end,
|
scoreDisp=function(D)return toTime(D[1]).." "..D[2].." Pieces"end,
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ return{
|
|||||||
local r=40-P.stat.row
|
local r=40-P.stat.row
|
||||||
if r<0 then r=0 end
|
if r<0 then r=0 end
|
||||||
mStr(r,69,335)
|
mStr(r,69,335)
|
||||||
P:drawTargetLine(r)
|
PLY.draw.drawTargetLine(P,r)
|
||||||
end,
|
end,
|
||||||
score=function(P)return{P.stat.time,P.stat.piece}end,
|
score=function(P)return{P.stat.time,P.stat.piece}end,
|
||||||
scoreDisp=function(D)return toTime(D[1]).." "..D[2].." Pieces"end,
|
scoreDisp=function(D)return toTime(D[1]).." "..D[2].." Pieces"end,
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ return{
|
|||||||
local r=10-P.stat.row
|
local r=10-P.stat.row
|
||||||
if r<0 then r=0 end
|
if r<0 then r=0 end
|
||||||
mStr(r,69,335)
|
mStr(r,69,335)
|
||||||
P:drawTargetLine(r)
|
PLY.draw.drawTargetLine(P,r)
|
||||||
end,
|
end,
|
||||||
score=function(P)return{P.stat.time,P.stat.piece}end,
|
score=function(P)return{P.stat.time,P.stat.piece}end,
|
||||||
scoreDisp=function(D)return toTime(D[1]).." "..D[2].." Pieces"end,
|
scoreDisp=function(D)return toTime(D[1]).." "..D[2].." Pieces"end,
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ return{
|
|||||||
local r=100-P.stat.row
|
local r=100-P.stat.row
|
||||||
if r<0 then r=0 end
|
if r<0 then r=0 end
|
||||||
mStr(r,69,335)
|
mStr(r,69,335)
|
||||||
P:drawTargetLine(r)
|
PLY.draw.drawTargetLine(P,r)
|
||||||
end,
|
end,
|
||||||
score=function(P)return{P.stat.time,P.stat.piece}end,
|
score=function(P)return{P.stat.time,P.stat.piece}end,
|
||||||
scoreDisp=function(D)return toTime(D[1]).." "..D[2].." Pieces"end,
|
scoreDisp=function(D)return toTime(D[1]).." "..D[2].." Pieces"end,
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ return{
|
|||||||
local r=1000-P.stat.row
|
local r=1000-P.stat.row
|
||||||
if r<0 then r=0 end
|
if r<0 then r=0 end
|
||||||
mStr(r,69,335)
|
mStr(r,69,335)
|
||||||
P:drawTargetLine(r)
|
PLY.draw.drawTargetLine(P,r)
|
||||||
end,
|
end,
|
||||||
score=function(P)return{P.stat.time,P.stat.piece}end,
|
score=function(P)return{P.stat.time,P.stat.piece}end,
|
||||||
scoreDisp=function(D)return toTime(D[1]).." "..D[2].." Pieces"end,
|
scoreDisp=function(D)return toTime(D[1]).." "..D[2].." Pieces"end,
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ return{
|
|||||||
local r=20-P.stat.row
|
local r=20-P.stat.row
|
||||||
if r<0 then r=0 end
|
if r<0 then r=0 end
|
||||||
mStr(r,69,335)
|
mStr(r,69,335)
|
||||||
P:drawTargetLine(r)
|
PLY.draw.drawTargetLine(P,r)
|
||||||
end,
|
end,
|
||||||
score=function(P)return{P.stat.time,P.stat.piece}end,
|
score=function(P)return{P.stat.time,P.stat.piece}end,
|
||||||
scoreDisp=function(D)return toTime(D[1]).." "..D[2].." Pieces"end,
|
scoreDisp=function(D)return toTime(D[1]).." "..D[2].." Pieces"end,
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ return{
|
|||||||
local r=40-P.stat.row
|
local r=40-P.stat.row
|
||||||
if r<0 then r=0 end
|
if r<0 then r=0 end
|
||||||
mStr(r,69,335)
|
mStr(r,69,335)
|
||||||
P:drawTargetLine(r)
|
PLY.draw.drawTargetLine(P,r)
|
||||||
end,
|
end,
|
||||||
score=function(P)return{P.stat.time,P.stat.piece}end,
|
score=function(P)return{P.stat.time,P.stat.piece}end,
|
||||||
scoreDisp=function(D)return toTime(D[1]).." "..D[2].." Pieces"end,
|
scoreDisp=function(D)return toTime(D[1]).." "..D[2].." Pieces"end,
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ return{
|
|||||||
local r=400-P.stat.row
|
local r=400-P.stat.row
|
||||||
if r<0 then r=0 end
|
if r<0 then r=0 end
|
||||||
mStr(r,69,335)
|
mStr(r,69,335)
|
||||||
P:drawTargetLine(r)
|
PLY.draw.drawTargetLine(P,r)
|
||||||
end,
|
end,
|
||||||
score=function(P)return{P.stat.time,P.stat.piece}end,
|
score=function(P)return{P.stat.time,P.stat.piece}end,
|
||||||
scoreDisp=function(D)return toTime(D[1]).." "..D[2].." Pieces"end,
|
scoreDisp=function(D)return toTime(D[1]).." "..D[2].." Pieces"end,
|
||||||
|
|||||||
Reference in New Issue
Block a user