@@ -501,6 +501,25 @@ class ChartingState extends MusicBeatState
501501 // trace('CHECKED!');
502502 };
503503
504+ var check_rgbEnable = new FlxUICheckBox (10 , 45 , null , null , " Disable Note RGB" , 100 );
505+ check_rgbEnable .checked = _song .disableNoteRGB ;
506+ // _song.needsVoices = check_voices.checked;
507+ check_rgbEnable .callback = function ()
508+ {
509+ _song .disableNoteRGB = check_rgbEnable .checked ;
510+ updateGrid ();
511+ // trace('CHECKED!');
512+ };
513+
514+ var check_splashEnable = new FlxUICheckBox (110 , 80 , null , null , " Disable Note Splashes" , 100 );
515+ check_splashEnable .checked = _song .disableSplashes ;
516+ // _song.needsVoices = check_voices.checked;
517+ check_splashEnable .callback = function ()
518+ {
519+ _song .disableSplashes = check_splashEnable .checked ;
520+ // trace('CHECKED!');
521+ };
522+
504523 var saveButton : FlxButton = new FlxButton (110 , 8 , " Save" , function ()
505524 {
506525 saveLevel ();
@@ -570,7 +589,7 @@ class ChartingState extends MusicBeatState
570589 clear_notes .color = FlxColor .RED ;
571590 clear_notes .label .color = FlxColor .WHITE ;
572591
573- var stepperBPM : FlxUINumericStepper = new FlxUINumericStepper (10 , 70 , 1 , 1 , 1 , 400 , 3 );
592+ var stepperBPM : FlxUINumericStepper = new FlxUINumericStepper (10 , 80 , 1 , 1 , 1 , 400 , 3 );
574593 stepperBPM .value = Conductor .bpm ;
575594 stepperBPM .name = ' song_bpm' ;
576595 blockPressWhileTypingOnStepper .push (stepperBPM );
@@ -726,6 +745,8 @@ class ChartingState extends MusicBeatState
726745 tab_group_song .add (UI_songTitle );
727746
728747 tab_group_song .add (check_voices );
748+ tab_group_song .add (check_rgbEnable );
749+ tab_group_song .add (check_splashEnable );
729750 tab_group_song .add (clear_events );
730751 tab_group_song .add (clear_notes );
731752 tab_group_song .add (saveButton );
@@ -740,7 +761,6 @@ class ChartingState extends MusicBeatState
740761 tab_group_song .add (noteSkinInputText );
741762 tab_group_song .add (noteSplashesInputText );
742763 tab_group_song .add (new FlxText (stepperBPM .x , stepperBPM .y - 15 , 0 , ' Song BPM:' ));
743- tab_group_song .add (new FlxText (stepperBPM .x + 100 , stepperBPM .y - 15 , 0 , ' Song Offset:' ));
744764 tab_group_song .add (new FlxText (stepperSpeed .x , stepperSpeed .y - 15 , 0 , ' Song Speed:' ));
745765 tab_group_song .add (new FlxText (player2DropDown .x , player2DropDown .y - 15 , 0 , ' Opponent:' ));
746766 tab_group_song .add (new FlxText (gfVersionDropDown .x , gfVersionDropDown .y - 15 , 0 , ' Girlfriend:' ));
0 commit comments