Skip to content

Commit

Permalink
Add maximum linear speeds to config
Browse files Browse the repository at this point in the history
  • Loading branch information
EnderBoy9217 authored Dec 30, 2024
1 parent bf8d787 commit c646ab0
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,11 @@ object EurekaConfig {
@JsonSchema(description = "Max smoothing value, will smooth out before reaching max value.")
var linearMaxMass = 10000.0

@JsonSchema(description = "Max unscaled speed in m/s.")
var linearMaxSpeed = 15.0
@JsonSchema(description = "Max unscaled speed for a flying ship in m/s.")
var linearMaxAirSpeed = 15.0

@JsonSchema(description = "Max unscaled speed for a ship floating in water/lava in m/s.")
var linearMaxWaterSpeed = 20.0

// Anti-velocity mass relevance when stopping the ship
// Max 10.0 (means no mass irrelevance)
Expand Down

0 comments on commit c646ab0

Please sign in to comment.