Skip to content

Commit

Permalink
closes #13 and closes #10
Browse files Browse the repository at this point in the history
  • Loading branch information
ninjamuffin99 committed Dec 2, 2020
1 parent bcce83d commit f8c21d1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Project.xml
Expand Up @@ -9,7 +9,7 @@

<!--The flixel preloader is not accurate in Chrome. You can use it regularly if you embed the swf into a html file
or you can set the actual size of your file manually at "FlxPreloaderBase-onUpdate-bytesTotal"-->
<app preloader="Preloader" resizable="true" />
<!-- <app preloader="Preloader" resizable="true" /> -->

<!--Minimum without FLX_NO_GAMEPAD: 11.8, without FLX_NO_NATIVE_CURSOR: 11.2-->
<set name="SWF_VERSION" value="11.8" />
Expand Down
2 changes: 1 addition & 1 deletion assets/data/monster/monster.json

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions source/PlayState.hx
Expand Up @@ -648,7 +648,7 @@ class PlayState extends MusicBeatState
}
else
{
//Conductor.songPosition = FlxG.sound.music.time;
// Conductor.songPosition = FlxG.sound.music.time;
Conductor.songPosition += FlxG.elapsed * 1000;

if (!paused)
Expand Down Expand Up @@ -679,7 +679,7 @@ class PlayState extends MusicBeatState
if (camFollow.x != dad.getMidpoint().x + 150 && !PlayState.SONG.notes[Std.int(curStep / 16)].mustHitSection)
{
camFollow.setPosition(dad.getMidpoint().x + 150, dad.getMidpoint().y - 100);
//camFollow.setPosition(lucky.getMidpoint().x - 120, lucky.getMidpoint().y + 210);
// camFollow.setPosition(lucky.getMidpoint().x - 120, lucky.getMidpoint().y + 210);
vocals.volume = 1;

if (SONG.song.toLowerCase() == 'tutorial')
Expand Down Expand Up @@ -739,14 +739,16 @@ class PlayState extends MusicBeatState
}
// better streaming of shit

//RESET = Quick Game Over Screen
if (controls.RESET){
// RESET = Quick Game Over Screen
if (controls.RESET)
{
health = 0;
trace("RESET = True");
}

//CHEAT = brandon's a pussy
if (controls.CHEAT){
// CHEAT = brandon's a pussy
if (controls.CHEAT)
{
health += 1;
trace("User is cheating!");
}
Expand Down Expand Up @@ -828,7 +830,7 @@ class PlayState extends MusicBeatState

if (daNote.y < -daNote.height)
{
if (daNote.tooLate)
if (daNote.tooLate || !daNote.wasGoodHit)
{
health -= 0.04;
vocals.volume = 0;
Expand All @@ -851,7 +853,6 @@ class PlayState extends MusicBeatState
{
canPause = false;


#if !switch
Highscore.saveScore(SONG.song, songScore, storyDifficulty);
#end
Expand All @@ -873,7 +874,6 @@ class PlayState extends MusicBeatState
NGio.unlockMedal(60961);
Highscore.saveWeekScore(storyWeek, campaignScore, storyDifficulty);


FlxG.save.data.weekUnlocked = StoryMenuState.weekUnlocked;
FlxG.save.flush();
}
Expand Down

0 comments on commit f8c21d1

Please sign in to comment.