Skip to content

Commit

Permalink
Update meepmeep version and MeepMeepVisualizer
Browse files Browse the repository at this point in the history
  • Loading branch information
rowan-mcalpin committed Sep 14, 2024
1 parent 711b6e7 commit ad45a3b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ dependencies {

implementation("org.apache.commons:commons-math3:3.6.1")
implementation("com.acmerobotics.roadrunner:core:0.5.5")
implementation("com.github.NoahBres:MeepMeep:2.0.3")
implementation("com.github.NoahBres:MeepMeep:-SNAPSHOT")

implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.20")
}
Expand Down Expand Up @@ -93,7 +93,7 @@ publishing {
register<MavenPublication>("release") {
groupId = "com.rowanmcalpin.nextftc"
artifactId = "core"
version = "0.1.2"
version = "0.2.0"

afterEvaluate {
from(components["release"])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ object MeepMeepVisualizer {

val robots = mutableListOf<MeepMeepRobot>()

fun run(trajectoryFactory: TrajectoryFactory, windowSize: Int = 600, darkMode: Boolean = true, backgroundAlpha: Float = 0.95f, background: MeepMeep.Background = MeepMeep.Background.FIELD_POWERPLAY_KAI_DARK) {
fun run(trajectoryFactory: TrajectoryFactory, windowSize: Int = 600, darkMode: Boolean = true, backgroundAlpha: Float = 0.95f, background: MeepMeep.Background = MeepMeep.Background.FIELD_INTOTHEDEEP_JUICE_DARK) {
val meepMeep = MeepMeep(windowSize)
meepMeep.setBackground(background)
.setDarkMode(darkMode)
Expand Down

0 comments on commit ad45a3b

Please sign in to comment.