Skip to content

Commit

Permalink
peak cinema music
Browse files Browse the repository at this point in the history
  • Loading branch information
x8c8r committed Jun 18, 2024
1 parent 798f934 commit 00da6e9
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion assets/preload/data/thorns/thorns-easy.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/preload/data/thorns/thorns.json

Large diffs are not rendered by default.

Binary file modified assets/preload/music/freakyMenu.mp3
Binary file not shown.
Binary file modified assets/preload/music/freakyMenu.ogg
Binary file not shown.
1 change: 1 addition & 0 deletions source/ChartingState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ class ChartingState extends MusicBeatState
player1: 'bf',
player2: 'dad',
speed: 1,
normal: false,
validScore: false
};
}
Expand Down
4 changes: 0 additions & 4 deletions source/FreeplayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -311,10 +311,6 @@ class FreeplayState extends MusicBeatState
intendedScore = Highscore.getScore(songs[curSelected].songName, curDifficulty);
#end

#if PRELOAD_ALL
//FlxG.sound.playMusic(Paths.inst(songs[curSelected].songName), 0);
#end

var bullShit:Int = 0;

for (i in 0...iconArray.length)
Expand Down
12 changes: 6 additions & 6 deletions source/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -2337,20 +2337,20 @@ class PlayState extends MusicBeatState
if (precheck) { // Before animation & health shit
switch (zeNoteType) {
case "Normal":
trace("Normal Note Hit");
// trace("Normal Note Hit");
case "Test":
trace("Test Note PRE HIT");
// trace("Test Note PRE HIT");
default:
trace(zeNoteType + "was HITTTEEEEEEEEEEEEED");
// trace(zeNoteType + "was HITTTEEEEEEEEEEEEED");
}
} else { // AFTER the note shit happened
switch (zeNoteType) {
case "Normal":
trace("Normal Note Hit");
// trace("Normal Note Hit");
case "Test":
trace("Test Note POST HIT");
// trace("Test Note POST HIT");
default:
trace(zeNoteType + "was HITTTEEEEEEEEEEEEED");
// trace(zeNoteType + "was HITTTEEEEEEEEEEEEED");
}
}
}
Expand Down
2 changes: 2 additions & 0 deletions source/Song.hx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ typedef SwagSong =
var bpm:Int;
var needsVoices:Bool;
var speed:Float;
var normal:Bool;

var player1:String;
var player2:String;
Expand All @@ -27,6 +28,7 @@ class Song
public var bpm:Int;
public var needsVoices:Bool = true;
public var speed:Float = 1;
public var normal:Bool = false;

public var player1:String = 'bf';
public var player2:String = 'dad';
Expand Down

0 comments on commit 00da6e9

Please sign in to comment.