GC.DO的画布初始颜色从#00000000改为#FFFFFF00,不再整体偏暗

部分素材会因此变化,故一起调整
This commit is contained in:
MrZ626
2021-08-18 15:09:20 +08:00
parent 9ec822a095
commit 1943a55bcc
4 changed files with 7 additions and 8 deletions

View File

@@ -111,7 +111,6 @@ do
}
TRS={
centerTex=GC.DO{10,10,
{'clear',1,1,1,.2},
{'setCL',1,1,1,.4},
{'fRect',1,1,8,8},
{'setCL',1,1,1,.6},
@@ -439,11 +438,9 @@ local SRS
do
SRS={
centerTex=GC.DO{10,10,
{'setCL',1,1,1,.2},
{'fCirc',5,5,5},
{'setCL',1,1,1,.6},
{'setCL',1,1,1,.3},
{'fCirc',5,5,4},
{'setCL',1,1,1,.8},
{'setCL',1,1,1,.6},
{'fCirc',5,5,3},
{'setCL',1,1,1},
{'fCirc',5,5,2},

View File

@@ -361,12 +361,12 @@ scene.widgetList={
WIDGET.newKey{name="tas", x=290,y=620,w=240,h=50,code=pressKey"t",hideF=function()return not ALLOWTAS or GAME.tasUsed or GAME.result or GAME.replaying end},
WIDGET.newKey{name="page_prev", x=500,y=390,w=70,code=pressKey"tab",noFrame=true,
fText=GC.DO{70,70,{'setLW',2}, {'dRPol',33,35,32,3,6,3.142},{'dRPol',45,35,32,3,6,3.142}},
fShade=GC.DO{70,70,{'setCL',1,1,1,.6},{'draw',GC.DO{70,70,{'setCL',1,1,1,1},{'fRPol',33,35,32,3,6,3.142},{'fRPol',45,35,32,3,6,3.142}}}},
fShade=GC.DO{70,70,{'setCL',1,1,1,.4},{'draw',GC.DO{70,70,{'setCL',1,1,1,1},{'fRPol',33,35,32,3,6,3.142},{'fRPol',45,35,32,3,6,3.142}}}},
hideF=function()return PLAYERS[1].frameRun<=180 end,
},
WIDGET.newKey{name="page_next", x=1230,y=390,w=70,code=pressKey"Stab",noFrame=true,
fText=GC.DO{70,70,{'setLW',2}, {'dRPol',37,35,32,3,6},{'dRPol',25,35,32,3,6}},
fShade=GC.DO{70,70,{'setCL',1,1,1,.6},{'draw',GC.DO{70,70,{'setCL',1,1,1,1},{'fRPol',37,35,32,3,6},{'fRPol',25,35,32,3,6}}}},
fShade=GC.DO{70,70,{'setCL',1,1,1,.4},{'draw',GC.DO{70,70,{'setCL',1,1,1,1},{'fRPol',37,35,32,3,6},{'fRPol',25,35,32,3,6}}}},
hideF=function()return PLAYERS[1].frameRun<=180 end,
},
WIDGET.newKey{name="replay", x=865,y=165,w=200,h=40,font=25,code=pressKey"p",hideF=function()return not(GAME.result or GAME.replaying)or #PLAYERS>1 end},

View File

@@ -28,7 +28,8 @@ gc.setLineWidth(2)
TEXTURE.puzzleMark={}
for i=1,17 do
TEXTURE.puzzleMark[i]=GC.DO{30,30,
{'setCL',minoColor[i][1],minoColor[i][2],minoColor[i][3]},
{'setLW',2},
{'setCL',minoColor[i][1],minoColor[i][2],minoColor[i][3],.7},
{'dRect',5,5,20,20},
{'dRect',10,10,10,10},
}