Gameplay Customization

This commit is contained in:
KadeDev
2021-03-30 01:03:23 -07:00
parent 8b506680ab
commit 8796ce1b97
7 changed files with 209 additions and 2 deletions

View File

@ -2160,6 +2160,12 @@ class PlayState extends MusicBeatState
rating.screenCenter();
rating.y -= 50;
rating.x = coolText.x - 125;
if (FlxG.save.data.changedHit)
{
rating.x = FlxG.save.data.changedHitX;
rating.y = FlxG.save.data.changedHitY;
}
rating.acceleration.y = 550;
rating.velocity.y -= FlxG.random.int(140, 175);
rating.velocity.x -= FlxG.random.int(0, 10);