Fix: typing test app bug, code revised

This commit is contained in:
2018-10-04 23:24:56 +09:00
parent b822762429
commit 88fb1552ba
9 changed files with 152 additions and 183 deletions
+11
View File
@@ -109,6 +109,16 @@ Hand.prototype.unhighlightOffFinger = function() {
}
Hand.loadResources = function() {
game.load.image('hand_palm', '../../../resources/image/ui/hand_palm.png');
game.load.image('hand_thumb', '../../../resources/image/ui/hand_thumb.png');
game.load.image('hand_index_finger', '../../../resources/image/ui/hand_index_finger.png');
game.load.image('hand_middle_finger', '../../../resources/image/ui/hand_middle_finger.png');
game.load.image('hand_little_finger', '../../../resources/image/ui/hand_little_finger.png');
game.load.image('hand_ring_finger', '../../../resources/image/ui/hand_ring_finger.png');
}
Hand.DEFAULT_Y_PX = 540; // 680;
@@ -260,4 +270,5 @@ RightHand.prototype.moveColumn = function(rowNo, key) {
}
RightHand.DEFAULT_X_PX = 810;