funny commit

This commit is contained in:
KadeDev
2021-04-04 18:08:19 -07:00
parent 5aad3d7818
commit fb55d993e1
8 changed files with 50 additions and 32 deletions

View File

@ -48,7 +48,7 @@ class Note extends FlxSprite
x += 50;
// MAKE SURE ITS DEFINITELY OFF SCREEN?
y -= 2000;
this.strumTime = strumTime + FlxG.save.data.offset;
this.strumTime = strumTime;
if (this.strumTime < 0 )
this.strumTime = 0;
@ -172,7 +172,7 @@ class Note extends FlxSprite
prevNote.animation.play('redhold');
}
prevNote.scale.y *= Conductor.stepCrochet / 100 * 1.8 * PlayState.SONG.speed;
prevNote.scale.y *= Conductor.stepCrochet / 100 * 1.8 * FlxG.save.data.scrollSpeed;
prevNote.updateHitbox();
// prevNote.setGraphicSize();
}