mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-09 00:04:42 +00:00
smol move
This commit is contained in:
commit
7c2cc40d7b
|
@ -2539,6 +2539,7 @@ class PlayState extends MusicBeatState
|
||||||
var comboSpr:FlxSprite = new FlxSprite().loadGraphic(Paths.image(pixelShitPart1 + 'combo' + pixelShitPart2));
|
var comboSpr:FlxSprite = new FlxSprite().loadGraphic(Paths.image(pixelShitPart1 + 'combo' + pixelShitPart2));
|
||||||
comboSpr.screenCenter();
|
comboSpr.screenCenter();
|
||||||
comboSpr.x = FlxG.width * 0.55;
|
comboSpr.x = FlxG.width * 0.55;
|
||||||
|
comboSpr.y += 80;
|
||||||
comboSpr.acceleration.y = 600;
|
comboSpr.acceleration.y = 600;
|
||||||
comboSpr.velocity.y -= 150;
|
comboSpr.velocity.y -= 150;
|
||||||
comboSpr.velocity.x += FlxG.random.int(1, 10);
|
comboSpr.velocity.x += FlxG.random.int(1, 10);
|
||||||
|
@ -2582,6 +2583,7 @@ class PlayState extends MusicBeatState
|
||||||
{
|
{
|
||||||
var numScore:FlxSprite = new FlxSprite().loadGraphic(Paths.image(pixelShitPart1 + 'num' + Std.int(i) + pixelShitPart2));
|
var numScore:FlxSprite = new FlxSprite().loadGraphic(Paths.image(pixelShitPart1 + 'num' + Std.int(i) + pixelShitPart2));
|
||||||
numScore.y = comboSpr.y + 80;
|
numScore.y = comboSpr.y + 80;
|
||||||
|
numScore.y = comboSpr.y;
|
||||||
|
|
||||||
if (curStage.startsWith('school'))
|
if (curStage.startsWith('school'))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue