From 48411894e2b8ab50a453e4f6edd0d046b81faa28 Mon Sep 17 00:00:00 2001 From: Cameron Taylor Date: Wed, 17 Mar 2021 05:29:04 -0400 Subject: [PATCH] offsets and adjustemnts --- source/Character.hx | 2 ++ source/PlayState.hx | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/source/Character.hx b/source/Character.hx index 86a630d49..3136db55b 100644 --- a/source/Character.hx +++ b/source/Character.hx @@ -100,6 +100,8 @@ class Character extends FlxSprite playAnim('idle'); + flipX = true; + case 'gf-car': tex = Paths.getSparrowAtlas('gfCar'); frames = tex; diff --git a/source/PlayState.hx b/source/PlayState.hx index c3e16d19e..e51e711df 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -624,6 +624,12 @@ class PlayState extends MusicBeatState boyfriend = new Boyfriend(770, 450, SONG.player1); + switch (SONG.player1) + { + case "bf-holding-gf": + boyfriend.y -= 140; + } + // REPOSITIONING PER STAGE switch (curStage) {