Add: ranking hour, day, month record php
This commit is contained in:
@@ -15,7 +15,7 @@ class RecordBoard {
|
||||
|
||||
|
||||
printRecordBoardHeader() {
|
||||
let posX = 40;
|
||||
let posX = 60;
|
||||
let posY = game.world.height / 2 + 20;
|
||||
|
||||
var bar = game.add.graphics();
|
||||
@@ -25,14 +25,14 @@ class RecordBoard {
|
||||
const style = { font: "32px Arial", fill: "#ffc", align: "left", boundsAlignH: "center", boundsAlignV: "middle" };
|
||||
this.printHeader(posX, posY, "최근의 내 기록", style);
|
||||
|
||||
posX = 340;
|
||||
posX = 320;
|
||||
style.fill = "#fff";
|
||||
this.printHeader(posX, posY, "수업시간 순위", style);
|
||||
|
||||
posX = 560;
|
||||
posX = 550;
|
||||
this.printHeader(posX, posY, "오늘의 순위", style);
|
||||
|
||||
posX = 780;
|
||||
posX = 770;
|
||||
this.printHeader(posX, posY, "이달의 순위", style);
|
||||
}
|
||||
|
||||
@@ -43,7 +43,7 @@ class RecordBoard {
|
||||
}
|
||||
|
||||
printSeperator() {
|
||||
const posX = 300;
|
||||
const posX = 290;
|
||||
const posY = 480;
|
||||
|
||||
this.chartGraphics.lineStyle(3, 0x444444, 1);
|
||||
|
||||
Reference in New Issue
Block a user