再次修正之前整理小程序代码把FONT.set打成FONT.get close #312

This commit is contained in:
MrZ626
2021-09-21 22:49:08 +08:00
parent b762741a6e
commit f1068eacd8
7 changed files with 13 additions and 13 deletions

View File

@@ -82,7 +82,7 @@ function scene.update()
end
function scene.draw()
FONT.get(40)
FONT.set(40)
gc.setColor(COLOR.Z)
gc.print(("%.3f"):format(time),1026,80)
gc.print(mistake,1026,150)
@@ -99,7 +99,7 @@ function scene.draw()
gc.setColor(.2,.8,.2)--ready
end
FONT.get(100)
FONT.set(100)
GC.mStr(state==1 and #targetString-progress+1 or state==0 and"Ready"or state==2 and"Win",640,200)
gc.setColor(COLOR.Z)
@@ -107,7 +107,7 @@ function scene.draw()
gc.print(targetString:sub(progress+1),310,380)
gc.setColor(1,1,1,.7)
FONT.get(40)
FONT.set(40)
gc.print(targetString,120,520)
end