mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-04-05 19:45:08 +00:00
better freeplay number
This commit is contained in:
parent
6a01c3008c
commit
4af5905100
|
@ -51,7 +51,7 @@ class FreeplayScore extends FlxTypedSpriteGroup<ScoreNum>
|
||||||
|
|
||||||
for (i in 0...7)
|
for (i in 0...7)
|
||||||
{
|
{
|
||||||
add(new ScoreNum(x + (45 * i), y, 0));
|
add(new ScoreNum(x + (35 * i), y, 0));
|
||||||
}
|
}
|
||||||
|
|
||||||
this.scoreShit = scoreShit;
|
this.scoreShit = scoreShit;
|
||||||
|
@ -69,13 +69,15 @@ class ScoreNum extends FlxSprite
|
||||||
|
|
||||||
function set_digit(val):Int
|
function set_digit(val):Int
|
||||||
{
|
{
|
||||||
if (animation.curAnim != null && animation.curAnim.name != Std.string(val))
|
if (animation.curAnim != null && animation.curAnim.name != numToString[val])
|
||||||
{
|
{
|
||||||
animation.play(Std.string(val), true, false, 0);
|
animation.play(numToString[val], true, false, 0);
|
||||||
updateHitbox();
|
updateHitbox();
|
||||||
|
|
||||||
switch (val)
|
switch (val)
|
||||||
{
|
{
|
||||||
|
case 1:
|
||||||
|
offset.x -= 15;
|
||||||
case 5:
|
case 5:
|
||||||
// set offsets
|
// set offsets
|
||||||
// offset.x += 0;
|
// offset.x += 0;
|
||||||
|
@ -98,6 +100,8 @@ class ScoreNum extends FlxSprite
|
||||||
public var baseY:Float = 0;
|
public var baseY:Float = 0;
|
||||||
public var baseX:Float = 0;
|
public var baseX:Float = 0;
|
||||||
|
|
||||||
|
var numToString:Array<String> = ["ZERO", "ONE", "TWO", "THREE", "FOUR", "FIVE", "SIX", "SEVEN", "EIGHT", "NINE"];
|
||||||
|
|
||||||
public function new(x:Float, y:Float, ?initDigit:Int = 0)
|
public function new(x:Float, y:Float, ?initDigit:Int = 0)
|
||||||
{
|
{
|
||||||
super(x, y);
|
super(x, y);
|
||||||
|
@ -105,17 +109,17 @@ class ScoreNum extends FlxSprite
|
||||||
baseY = y;
|
baseY = y;
|
||||||
baseX = x;
|
baseX = x;
|
||||||
|
|
||||||
frames = Paths.getSparrowAtlas('noteComboNumbers');
|
frames = Paths.getSparrowAtlas('digital_numbers');
|
||||||
|
|
||||||
for (i in 0...10)
|
for (i in 0...10)
|
||||||
{
|
{
|
||||||
var stringNum:String = Std.string(i);
|
var stringNum:String = numToString[i];
|
||||||
animation.addByPrefix(stringNum, stringNum, 24, false);
|
animation.addByPrefix(stringNum, stringNum, 24, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
this.digit = initDigit;
|
this.digit = initDigit;
|
||||||
|
|
||||||
animation.play(Std.string(digit), true);
|
animation.play(numToString[digit], true);
|
||||||
antialiasing = true;
|
antialiasing = true;
|
||||||
|
|
||||||
setGraphicSize(Std.int(width * 0.3));
|
setGraphicSize(Std.int(width * 0.3));
|
||||||
|
|
Loading…
Reference in a new issue