diff --git a/src/main/kotlin/com/noahbres/meepmeep/MeepMeep.kt b/src/main/kotlin/com/noahbres/meepmeep/MeepMeep.kt index 612389c..279b1f2 100644 --- a/src/main/kotlin/com/noahbres/meepmeep/MeepMeep.kt +++ b/src/main/kotlin/com/noahbres/meepmeep/MeepMeep.kt @@ -319,6 +319,18 @@ open class MeepMeep @JvmOverloads constructor(private val windowSize: Int, fps: colorManager.isDarkMode = false rotated(ImageIO.read(classLoader.getResourceAsStream("background/season-2023-centerstage/field-2023-juice-light.png")), Math.toRadians(90.0)) } + Background.FIELD_INTO_THE_DEEP_OFFICIAL -> { + colorManager.isDarkMode = false + ImageIO.read(classLoader.getResourceAsStream("background/season-2024-intothedeep/field-2024-official.png")) + } + Background.FIELD_INTO_THE_DEEP_JUICE_DARK -> { + colorManager.isDarkMode = true + ImageIO.read(classLoader.getResourceAsStream("background/season-2024-intothedeep/field-2024-juice-dark.png")) + } + Background.FIELD_INTO_THE_DEEP_JUICE_LIGHT -> { + colorManager.isDarkMode = false + ImageIO.read(classLoader.getResourceAsStream("background/season-2024-intothedeep/field-2024-juice-light.png")) + } }.getScaledInstance(windowSize, windowSize, Image.SCALE_SMOOTH) refreshTheme() @@ -451,5 +463,8 @@ open class MeepMeep @JvmOverloads constructor(private val windowSize: Int, fps: FIELD_CENTERSTAGE_OFFICIAL, FIELD_CENTERSTAGE_JUICE_DARK, FIELD_CENTERSTAGE_JUICE_LIGHT, + FIELD_INTO_THE_DEEP_OFFICIAL, + FIELD_INTO_THE_DEEP_JUICE_DARK, + FIELD_INTO_THE_DEEP_JUICE_LIGHT, } } diff --git a/src/main/resources/background/season-2024-intothedeep/field-2024-juice-dark.png b/src/main/resources/background/season-2024-intothedeep/field-2024-juice-dark.png new file mode 100644 index 0000000..823023d Binary files /dev/null and b/src/main/resources/background/season-2024-intothedeep/field-2024-juice-dark.png differ diff --git a/src/main/resources/background/season-2024-intothedeep/field-2024-juice-light.png b/src/main/resources/background/season-2024-intothedeep/field-2024-juice-light.png new file mode 100644 index 0000000..17edb2e Binary files /dev/null and b/src/main/resources/background/season-2024-intothedeep/field-2024-juice-light.png differ diff --git a/src/main/resources/background/season-2024-intothedeep/field-2024-official.png b/src/main/resources/background/season-2024-intothedeep/field-2024-official.png new file mode 100644 index 0000000..c4e0b99 Binary files /dev/null and b/src/main/resources/background/season-2024-intothedeep/field-2024-official.png differ