Skip to content

Commit

Permalink
New icon and dark soundtrack
Browse files Browse the repository at this point in the history
  • Loading branch information
Slotterleet committed Mar 2, 2024
1 parent 6915955 commit cfbbdba
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 1 deletion.
Binary file removed assets/icon.png
Binary file not shown.
Binary file added assets/music/dark/Reflection_overdrive.ogg
Binary file not shown.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ jar{

from(rootDir){
include "mod.hjson"
include "icon.png"
}

from("assets/"){
Expand Down
Binary file added icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/fosost/FOSOSTMod.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public FOSOSTMod() {
new AmbientMusicEntry(ultraSaw, "lumoni", true, false);
new AmbientMusicEntry(rustyBlood, "lumoni", true, false);
new AmbientMusicEntry(infected, "lumoni", true, false);
new AmbientMusicEntry(reflectionOverdrive, "lumoni", true, false);

new AmbientMusicEntry(dive, "uxerd", false, false);

Expand Down
3 changes: 2 additions & 1 deletion src/fosost/content/FOSMusic.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
public class FOSMusic {
public static Music
/* Lumoni ambient */ abandoned, slowdown, local, source, darkNest, alive,
/* Lumoni dark */ ultraSaw, rustyBlood, infected,
/* Lumoni dark */ ultraSaw, rustyBlood, infected, reflectionOverdrive,
/* Uxerd */ dive,
/* bosses */ livingSteam, tcfn, scavenger, unstableCore;

Expand All @@ -21,6 +21,7 @@ public static void load() {
ultraSaw = loadMusic("dark/ultraSaw");
rustyBlood = loadMusic("dark/Rusty_blood");
infected = loadMusic("dark/Infected");
reflectionOverdrive = loadMusic("dark/Reflection_overdrive");

dive = loadMusic("ambient/dive");

Expand Down

0 comments on commit cfbbdba

Please sign in to comment.