diff --git a/.idea/gradle.xml b/.idea/gradle.xml index 41f2f90..b7c6577 100644 --- a/.idea/gradle.xml +++ b/.idea/gradle.xml @@ -8,7 +8,7 @@ - + diff --git a/.idea/misc.xml b/.idea/misc.xml index e5c604c..6565e29 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -4,7 +4,7 @@ - + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 00783eb..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml deleted file mode 100644 index 797acea..0000000 --- a/.idea/runConfigurations.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/main/kotlin/com/noahbres/meepmeep/MeepMeep.kt b/src/main/kotlin/com/noahbres/meepmeep/MeepMeep.kt index 7577b51..cc8300b 100644 --- a/src/main/kotlin/com/noahbres/meepmeep/MeepMeep.kt +++ b/src/main/kotlin/com/noahbres/meepmeep/MeepMeep.kt @@ -321,6 +321,18 @@ open class MeepMeep @JvmOverloads constructor(private val windowSize: Int, fps: colorManager.isDarkMode = false ImageIO.read(classLoader.getResourceAsStream("background/season-2022-powerplay/field-2022-kai-light.png")) } + Background.FIELD_CENTERSTAGE_OFFICIAL -> { + colorManager.isDarkMode = false + ImageIO.read(classLoader.getResourceAsStream("background/season-2023-centerstage/field-2023-official.png")) + } + Background.FIELD_CENTERSTAGE_JUICE_DARK -> { + colorManager.isDarkMode = false + ImageIO.read(classLoader.getResourceAsStream("background/season-2023-centerstage/field-2023-juice-dark.png")) + } + Background.FIELD_CENTERSTAGE_JUICE_LIGHT -> { + colorManager.isDarkMode = false + ImageIO.read(classLoader.getResourceAsStream("background/season-2023-centerstage/field-2023-juice-light.png")) + } }.getScaledInstance(windowSize, windowSize, Image.SCALE_SMOOTH) @@ -457,6 +469,9 @@ open class MeepMeep @JvmOverloads constructor(private val windowSize: Int, fps: FIELD_FREIGHTFRENZY_ADI_DARK, FIELD_POWERPLAY_OFFICIAL, FIELD_POWERPLAY_KAI_DARK, - FIELD_POWERPLAY_KAI_LIGHT + FIELD_POWERPLAY_KAI_LIGHT, + FIELD_CENTERSTAGE_OFFICIAL, + FIELD_CENTERSTAGE_JUICE_DARK, + FIELD_CENTERSTAGE_JUICE_LIGHT } } diff --git a/src/main/resources/background/season-2023-centerstage/field-2023-juice-dark.png b/src/main/resources/background/season-2023-centerstage/field-2023-juice-dark.png new file mode 100644 index 0000000..23df874 Binary files /dev/null and b/src/main/resources/background/season-2023-centerstage/field-2023-juice-dark.png differ diff --git a/src/main/resources/background/season-2023-centerstage/field-2023-juice-light.png b/src/main/resources/background/season-2023-centerstage/field-2023-juice-light.png new file mode 100644 index 0000000..92b6953 Binary files /dev/null and b/src/main/resources/background/season-2023-centerstage/field-2023-juice-light.png differ diff --git a/src/main/resources/background/season-2023-centerstage/field-2023-official.png b/src/main/resources/background/season-2023-centerstage/field-2023-official.png new file mode 100644 index 0000000..7f55745 Binary files /dev/null and b/src/main/resources/background/season-2023-centerstage/field-2023-official.png differ