Add: ranking hour, day, month record php

This commit is contained in:
2018-05-18 09:52:58 +09:00
parent 8fe5c72987
commit 60bd151c92
18 changed files with 404 additions and 158 deletions
+5 -5
View File
@@ -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);