minor adjustments because I am silly
This commit is contained in:
parent
67ac84d259
commit
cd56f840ba
1 changed files with 3 additions and 3 deletions
|
@ -266,7 +266,7 @@ class CardCreator {
|
||||||
// Name, Title, Server Rect
|
// Name, Title, Server Rect
|
||||||
ctx.fillRect(25, 10, 840, 100);
|
ctx.fillRect(25, 10, 840, 100);
|
||||||
|
|
||||||
ctx.drawImage(this.imgJobBg[data.Character.ActiveClassJob.UnlockedState.ID], 450, 5, rectFullWidth, 110);
|
ctx.drawImage(this.imgJobBg[data.Character.ActiveClassJob.UnlockedState.ID], 450, 4, rectFullWidth, 110);
|
||||||
|
|
||||||
ctx.fillRect(rectStartX, rectStartRow2Y, rectHalfWidth, rectHeightRow2);
|
ctx.fillRect(rectStartX, rectStartRow2Y, rectHalfWidth, rectHeightRow2);
|
||||||
ctx.fillRect(rectStartXHalf, rectStartRow2Y, rectHalfWidth, rectHeightRow2);
|
ctx.fillRect(rectStartXHalf, rectStartRow2Y, rectHalfWidth, rectHeightRow2);
|
||||||
|
@ -315,9 +315,9 @@ class CardCreator {
|
||||||
ctx.textAlign = "center";
|
ctx.textAlign = "center";
|
||||||
// Chara Name
|
// Chara Name
|
||||||
if (data.Character.Title === undefined || data.Character.Title.Name == null || data.Character.Title.Name == "") {
|
if (data.Character.Title === undefined || data.Character.Title.Name == null || data.Character.Title.Name == "") {
|
||||||
ctx.fillText(data.Character.Name, 450, 75);
|
ctx.fillText(data.Character.Name, 450, 80);
|
||||||
} else {
|
} else {
|
||||||
ctx.fillText(data.Character.Name, 450, 75);
|
ctx.fillText(data.Character.Name, 450, 80);
|
||||||
}
|
}
|
||||||
// Race, Clan, Guardian, GC, FC Info
|
// Race, Clan, Guardian, GC, FC Info
|
||||||
ctx.font = smed;
|
ctx.font = smed;
|
||||||
|
|
Loading…
Reference in a new issue