Add: Ads screen in the start page

This commit is contained in:
2018-09-22 16:03:49 +09:00
parent 7780bd534f
commit 58de28d781
6 changed files with 93 additions and 3 deletions
+15 -1
View File
@@ -3,7 +3,7 @@ var LANGUAGE_ENGLISH = "english";
var MODE_RELEASE = "release";
var MODE_DEBUG = "debug";
var runMode = MODE_RELEASE;
var runMode = MODE_DEBUG;
function isDebugMode() {
// console.log("debug mode ? " + runMode);
@@ -117,5 +117,19 @@ function isTypingSentenceStage() {
return false;
}
function isExperiencePlayerAccount() {
if(sessionStorageManager.getMaestroAccountType() == 100)
return true;
return false;
}
function isExperienceMaestroAccount() {
if(sessionStorageManager.getMaestroAccountType() == 101)
return true;
return false;
}
let textStyleBasic = { font: "bold 32px Arial", fill: "#fff", align: "center", boundsAlignH: "center", boundsAlignV: "middle" };