Add gf to customize gameplay screen

This commit is contained in:
CyndaquilDAC 2021-07-10 22:54:04 -05:00
parent f67d0e4d92
commit 3673011f85

View File

@ -33,6 +33,7 @@ class GameplayCustomizeState extends MusicBeatState
var bf:Boyfriend;
var dad:Character;
var gf:Character;
var strumLine:FlxSprite;
var strumLineNotes:FlxTypedGroup<FlxSprite>;
@ -74,10 +75,14 @@ class GameplayCustomizeState extends MusicBeatState
bf = new Boyfriend(770, 450, 'bf');
gf = new Character(400, 130, 'gf');
var camPos:FlxPoint = new FlxPoint(dad.getGraphicMidpoint().x + 400, dad.getGraphicMidpoint().y);
camFollow.setPosition(camPos.x, camPos.y);
add(gf);
add(bf);
add(dad);