mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-14 19:25:16 -05:00
fresh Song charted
This commit is contained in:
parent
ce5235a9ac
commit
8845651c7d
3 changed files with 4 additions and 0 deletions
|
@ -20,6 +20,8 @@ class Boyfriend extends Character
|
|||
animation.addByPrefix('hey', 'BF HEY', 24, false);
|
||||
playAnim('idle');
|
||||
|
||||
antialiasing = true;
|
||||
|
||||
addOffset('idle', -5);
|
||||
addOffset("singUP", -29, 27);
|
||||
addOffset("singRIGHT", -38, -7);
|
||||
|
|
|
@ -37,6 +37,7 @@ class Note extends FlxSprite
|
|||
|
||||
setGraphicSize(Std.int(width * 0.7));
|
||||
updateHitbox();
|
||||
antialiasing = true;
|
||||
|
||||
switch (Math.abs(noteData))
|
||||
{
|
||||
|
|
|
@ -201,6 +201,7 @@ class PlayState extends FlxState
|
|||
babyArrow.scrollFactor.set();
|
||||
babyArrow.setGraphicSize(Std.int(babyArrow.width * 0.7));
|
||||
babyArrow.updateHitbox();
|
||||
babyArrow.antialiasing = true;
|
||||
|
||||
babyArrow.ID = i + 1;
|
||||
|
||||
|
|
Loading…
Reference in a new issue