spookeez charted

This commit is contained in:
Cameron Taylor 2020-10-30 11:54:53 -07:00
parent 6e1274d849
commit 057e40baa6
4 changed files with 4 additions and 27 deletions

View File

@ -92,5 +92,5 @@
<!--Place custom nodes like icons here (higher priority to override the HaxeFlixel icon)-->
<icon path="art/icon.png"/>
<!-- <haxedef name="SKIP_TO_PLAYSTATE" if="debug" /> -->
<haxedef name="SKIP_TO_PLAYSTATE" if="debug" />
</project>

File diff suppressed because one or more lines are too long

View File

@ -311,11 +311,6 @@ class PlayState extends MusicBeatState
// NEW SHIT
noteData = songData.notes;
for (i in 1...songData.sections + 1)
{
// noteData.push(ChartParser.parse(songData.song.toLowerCase(), i));
}
var playerCounter:Int = 0;
var daBeats:Int = 0; // Not exactly representative of 'daBeats' lol, just how much it has looped
@ -330,7 +325,7 @@ class PlayState extends MusicBeatState
var gottaHitNote:Bool = section.mustHitSection;
if (songNotes.noteData > 3)
if (songNotes[1] > 3)
{
gottaHitNote = !section.mustHitSection;
}
@ -375,25 +370,7 @@ class PlayState extends MusicBeatState
else
{
}
// WILL HAVE TO REDO SCORE SYSTEM
/* if (section.mustHitSection)
{
if (playerCounter == 1) // is the player
{
swagNote.mustPress = true;
}
else
{
}
}
*/
}
/* // only need to do it once
if (section.mustHitSection)
sectionLengths.push(Math.round(coolSection / 4));
*/
daBeats += 1;
}

View File

@ -41,7 +41,7 @@ class TitleState extends MusicBeatState
super.create();
#if SKIP_TO_PLAYSTATE
FlxG.switchState(new ChartingState());
FlxG.switchState(new FreeplayState());
#else
startIntro();
#end