vbox specs

This commit is contained in:
ntr
2019-03-06 18:08:39 +11:00
parent 9ba8c478cc
commit 5ea6b911ad
5 changed files with 155 additions and 166 deletions
+7 -3
View File
@@ -8,9 +8,13 @@ const {
function FindColour(item) {
// Future add skills and use a constants lookup file ??
switch (item) {
case 'Green': return 0x61B329;
case 'Red': return 0xCC3333;
case 'Blue': return 0x6633FF;
case 'Green': return 0x396E26;
case 'Red': return 0x622433;
case 'Blue': return 0x223158;
// case 'Green': return 0x043003;
// case 'Red': return 0x5C0202;
// case 'Blue': return 0x040345;
default: return 0x222222;
}
}
+1 -1
View File
@@ -20,7 +20,7 @@ class Header extends Phaser.Scene {
}
create() {
this.add.text(0, 0, 'cryps.gg', TEXT.HEADER);
this.add.text(0, 0, 'CRYPS.GG', TEXT.HEADER);
}
}