加载动画添加进楼层效果

This commit is contained in:
MrZ626
2021-03-08 00:20:36 +08:00
parent 0aca743e0c
commit ca6d3ba9e2

View File

@@ -191,6 +191,13 @@ function scene.draw()
--Wall --Wall
gc.clear(.5,.5,.5) gc.clear(.5,.5,.5)
gc.push("transform")
if openTime>2.26 then
gc.translate(640,360)
gc.scale(1+(openTime-2.26)^1.8)
gc.translate(-640,-360)
end
--Logo --Logo
if progress==25 then if progress==25 then
--Outside background --Outside background
@@ -280,13 +287,14 @@ function scene.draw()
gc.rectangle("line",340,0,600,720) gc.rectangle("line",340,0,600,720)
--Black screen --Black screen
if blackTime>0 then if blackTime>0 or openTime>3 then
gc.push("transform") gc.push("transform")
gc.origin() gc.origin()
gc.setColor(0,0,0,blackTime) gc.setColor(0,0,0,blackTime+(openTime-3)*4)
gc.rectangle("fill",0,0,SCR.w,SCR.h) gc.rectangle("fill",0,0,SCR.w,SCR.h)
gc.pop() gc.pop()
end end
gc.pop()
end end
return scene return scene