Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
heheheh
Browse files Browse the repository at this point in the history
  • Loading branch information
Kade-github committed Aug 23, 2021
1 parent 3831ac2 commit 02bd051
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions source/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -685,9 +685,11 @@ class PlayState extends MusicBeatState

trace("SF CALC: " + Math.floor((PlayStateChangeables.safeFrames / 60) * 1000));

var doof = null;

if (isStoryMode)
{
var doof:DialogueBox = new DialogueBox(false, dialogue);
doof = new DialogueBox(false, dialogue);
// doof.x += 70;
// doof.y = FlxG.height * 0.5;
doof.scrollFactor.set();
Expand Down Expand Up @@ -934,7 +936,8 @@ class PlayState extends MusicBeatState
iconP1.cameras = [camHUD];
iconP2.cameras = [camHUD];
scoreTxt.cameras = [camHUD];
doof.cameras = [camHUD];
if (isStoryMode)
doof.cameras = [camHUD];
if (FlxG.save.data.songPosition)
{
songPosBG.cameras = [camHUD];
Expand Down

0 comments on commit 02bd051

Please sign in to comment.