Skip to content

Commit

Permalink
fix vertical spacing of Evaluation RecordText
Browse files Browse the repository at this point in the history
  • Loading branch information
quietly-turning committed Aug 11, 2014
1 parent 43e8126 commit 3f18195
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BGAnimations/ScreenEvaluation common/recordTexts.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ local bPersonalRecord = ( highScoreIndex.Personal ~= -1 ) and stats:GetPercentDa

r[#r+1] = LoadFont("_wendy small")..{
Text=string.format("Machine Record %i", highScoreIndex.Machine+1),
InitCommand=cmd(halign,0; xy,-110,-4,shadowlength,1;diffuse,PlayerColor(pn);NoStroke;glowshift;effectcolor1,color("1,1,1,0");effectcolor2,color("1,1,1,0.25")),
InitCommand=cmd(halign,0; xy,-110,-18;diffuse,PlayerColor(pn);glowshift;effectcolor1,color("1,1,1,0");effectcolor2,color("1,1,1,0.25")),
BeginCommand=cmd(visible,bMachineRecord;)
}

r[#r+1] = LoadFont("_wendy small")..{
Text=string.format("Personal Record %i", highScoreIndex.Personal+1),
InitCommand=cmd(halign,0; xy,-110,18;shadowlength,1;diffuse,PlayerColor(pn);NoStroke;glowshift;effectcolor1,color("1,1,1,0");effectcolor2,color("1,1,1,0.25")),
InitCommand=cmd(halign,0; xy,-110,24;diffuse,PlayerColor(pn);glowshift;effectcolor1,color("1,1,1,0");effectcolor2,color("1,1,1,0.25")),
BeginCommand=cmd(visible,bPersonalRecord;)
}

Expand Down

0 comments on commit 3f18195

Please sign in to comment.