Skip to content

Commit

Permalink
Add INTO THE DEEP Official Field Image and Juice Custom Alternative I…
Browse files Browse the repository at this point in the history
…mages (#10)

* Create temp.txt

* uploaded field images

* Delete src/main/resources/background/season-2024-intothedeep/temp.txt

* Update MeepMeep.kt

* Added higher resolution official image

* remove java image rotation (images already rotated to match rr orientation

* Update MeepMeep.kt with changed naming convention + fixed dark mode attribute issue
  • Loading branch information
kidsonfilms-python-rules authored Sep 8, 2024
1 parent cd05c13 commit 5300cb7
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/main/kotlin/com/noahbres/meepmeep/MeepMeep.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -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,
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 5300cb7

Please sign in to comment.