alphabet code and sheet updated!!!
This commit is contained in:
parent
6b809a9a97
commit
4c7e8d84ee
Binary file not shown.
Before Width: | Height: | Size: 137 KiB After Width: | Height: | Size: 130 KiB |
File diff suppressed because it is too large
Load Diff
@ -302,6 +302,48 @@ class AlphaCharacter extends FlxSprite
|
|||||||
case "!":
|
case "!":
|
||||||
animation.addByPrefix(letter, 'exclamation point', 24);
|
animation.addByPrefix(letter, 'exclamation point', 24);
|
||||||
animation.play(letter);
|
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();
|
updateHitbox();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user