Skip to content

Commit

Permalink
Update NotesSubState.hx
Browse files Browse the repository at this point in the history
  • Loading branch information
Joalor64GH authored Aug 2, 2023
1 parent fda71f1 commit 198da42
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions source/meta/data/options/NotesSubState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class NotesSubState extends MusicBeatSubstate
var btn2:FlxButton;

var blackBG:FlxSprite;
var hsbText:Alphabet;
var rgbText:Alphabet;
var posX = 230;
public function new()
{
Expand Down Expand Up @@ -124,10 +124,10 @@ class NotesSubState extends MusicBeatSubstate
btn2.updateHitbox();
add(btn2);

hsbText = new Alphabet(posX + 550, 0, "Red Green Blue", false);
hsbText.scaleX = 0.6;
hsbText.scaleY = 0.6;
add(hsbText);
rgbText = new Alphabet(posX + 550, 0, "Red Green Blue", false);
rgbText.scaleX = 0.6;
rgbText.scaleY = 0.6;
add(rgbText);

changeSelection();

Expand Down Expand Up @@ -253,7 +253,7 @@ class NotesSubState extends MusicBeatSubstate
if (curSelected == i) {
item.alpha = 1;
item.scale.set(1, 1);
hsbText.y = item.y - 70;
rgbText.y = item.y - 70;
blackBG.y = item.y - 20;
}
}
Expand Down

0 comments on commit 198da42

Please sign in to comment.