diff --git a/assets/preload/images/alphabet.png b/assets/preload/images/alphabet.png index 7c1bdda..e1f3cb7 100644 Binary files a/assets/preload/images/alphabet.png and b/assets/preload/images/alphabet.png differ diff --git a/assets/preload/images/alphabet.xml b/assets/preload/images/alphabet.xml index a473eed..dd5ed82 100644 --- a/assets/preload/images/alphabet.xml +++ b/assets/preload/images/alphabet.xml @@ -1,505 +1,510 @@  - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/Alphabet.hx b/source/Alphabet.hx index 6f7e711..c16de50 100644 --- a/source/Alphabet.hx +++ b/source/Alphabet.hx @@ -238,7 +238,7 @@ class AlphaCharacter extends FlxSprite public static var numbers:String = "1234567890"; - public static var symbols:String = "|~#$%()*+-:;<=>@[]^_.,'!?"; + public static var symbols:String = "|~#$%()*+-:;<=>@[]^_.,'!? "; public var row:Int = 0; @@ -302,6 +302,48 @@ class AlphaCharacter extends FlxSprite case "!": animation.addByPrefix(letter, 'exclamation point', 24); animation.play(letter); + case '_': + animation.addByPrefix(letter, '_', 24); + animation.play(letter); + y += 50; + case "#": + animation.addByPrefix(letter, '#', 24); + animation.play(letter); + case "$": + animation.addByPrefix(letter, '$', 24); + animation.play(letter); + case "%": + animation.addByPrefix(letter, '%', 24); + animation.play(letter); + case "&": + animation.addByPrefix(letter, '&', 24); + animation.play(letter); + case "(": + animation.addByPrefix(letter, '(', 24); + animation.play(letter); + case ")": + animation.addByPrefix(letter, ')', 24); + animation.play(letter); + case "+": + animation.addByPrefix(letter, '+', 24); + animation.play(letter); + case "-": + animation.addByPrefix(letter, '-', 24); + animation.play(letter); + case '"': + animation.addByPrefix(letter, '"', 24); + animation.play(letter); + y -= 0; + case '@': + animation.addByPrefix(letter, '@', 24); + animation.play(letter); + case "^": + animation.addByPrefix(letter, '^', 24); + animation.play(letter); + y -= 0; + case ' ': + animation.addByPrefix(letter, 'space', 24); + animation.play(letter); } updateHitbox();