Skip to content

Commit

Permalink
ruh.
Browse files Browse the repository at this point in the history
fixed the additional character editor box size covering up one of the character editor control tips
  • Loading branch information
JordanSantiagoYT committed Dec 4, 2023
1 parent 49d9491 commit bcf19a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/editors/CharacterEditorState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ class CharacterEditorState extends MusicBeatState

for (i in 0...tipTextArray.length-1)
{
var tipText:FlxText = new FlxText(FlxG.width - 320, FlxG.height - 15 - 16 * (tipTextArray.length - i), 300, tipTextArray[i], 12);
var tipText:FlxText = new FlxText(FlxG.width - 320, FlxG.height - 10 - 14 * (tipTextArray.length - i), 300, tipTextArray[i], 12);
tipText.cameras = [camHUD];
tipText.setFormat(null, 12, FlxColor.WHITE, RIGHT, FlxTextBorderStyle.OUTLINE_FAST, FlxColor.BLACK);
tipText.scrollFactor.set();
Expand Down

1 comment on commit bcf19a9

@StinkTheStinker
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not even the results problem 💀

Please sign in to comment.