整理代码,把ScF正式加入staff

This commit is contained in:
MrZ626
2021-02-09 22:27:37 +08:00
parent 38fe77804e
commit 28c38e84da
7 changed files with 12 additions and 11 deletions

View File

@@ -47,13 +47,14 @@ end
local function drawRow(h,V,L)
local texture=SKIN.curText
local t=TIME()*4
local rep=GAME.replaying
for i=1,10 do
if L[i]>0 then
if V[i]>0 then
local a=V[i]*.05
gc_setColor(1,1,1,a)
gc_draw(texture[L[i]],30*i-30,-30*h)-- drawCell(j,i,L[i])
elseif GAME.replaying then
elseif rep then
gc_setColor(1,1,1,.3+.08*sin(.5*(h-i)+t))
gc_rectangle("fill",30*i-30,-30*h,30,30)
end