Skip to content

Commit 30980e4

Browse files
authored
Merge pull request #12 from abidingabi/master
Add Power Play official field image
2 parents 17ac861 + 272fadd commit 30980e4

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/main/kotlin/com/noahbres/meepmeep/MeepMeep.kt

+6-1
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,10 @@ open class MeepMeep @JvmOverloads constructor(private val windowSize: Int, fps:
309309
colorManager.isDarkMode = true
310310
ImageIO.read(classLoader.getResourceAsStream("background/season-2021-freightfrenzy/field-2021-adi-dark.png"))
311311
}
312+
Background.FIELD_POWERPLAY_OFFICIAL -> {
313+
colorManager.isDarkMode = false
314+
ImageIO.read(classLoader.getResourceAsStream("background/season-2022-powerplay/field-2022-official.png"))
315+
}
312316

313317
}.getScaledInstance(windowSize, windowSize, Image.SCALE_SMOOTH)
314318

@@ -442,6 +446,7 @@ open class MeepMeep @JvmOverloads constructor(private val windowSize: Int, fps:
442446
FIELD_SKYSTONE_STARWARS_DARK,
443447
FIELD_ULTIMATEGOAL_INNOV8RZ_DARK,
444448
FIELD_FREIGHTFRENZY_OFFICIAL,
445-
FIELD_FREIGHTFRENZY_ADI_DARK
449+
FIELD_FREIGHTFRENZY_ADI_DARK,
450+
FIELD_POWERPLAY_OFFICIAL
446451
}
447452
}
Loading

0 commit comments

Comments
 (0)