~starkingdoms/starkingdoms

9dd504aebbaf9108d62f6a601f7e6e27b79d29b7 — ghostlyzsh 1 year, 7 months ago d126210
stabilization iterations added
4 files changed, 4 insertions(+), 6 deletions(-)

M Cargo.lock
M server/Cargo.toml
M server/config.toml
M server/src/main.rs
M Cargo.lock => Cargo.lock +2 -4
@@ 872,8 872,7 @@ checksum = "ea003584000ef02b73800cc7cb62ee74792fff431e6a8df36863c43bf56fb491"
[[package]]
name = "bevy_rapier2d"
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc1f2ef2ae7fcf68ccb33f95c1dfc7c679bbc0e33b7f2e461353073065ff6e1e"
source = "git+https://github.com/ghostlyzsh/bevy_rapier.git#348c11dc7463a2c4b29c28cd118b4730c3d15035"
dependencies = [
 "bevy",
 "bitflags 2.5.0",


@@ 3288,8 3287,7 @@ checksum = "9c8a99fddc9f0ba0a85884b8d14e3592853e787d581ca1816c91349b10e4eeab"
[[package]]
name = "rapier2d"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "48a3ec4ae89e0837c0ff6f29af32a8e5d78dfabe2273dcd945cfaf3f5d2b1501"
source = "git+https://github.com/ghostlyzsh/rapier.git#0ac5a2906d4ffbfba346bf327ed91fac351e29aa"
dependencies = [
 "approx",
 "arrayvec",

M server/Cargo.toml => server/Cargo.toml +1 -1
@@ 8,7 8,7 @@ license = "AGPL-3"
bevy = { version = "0.13.1", default-features = false }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
bevy_rapier2d = { version = "0.25", features = ["serde-serialize"] }
bevy_rapier2d = { git = "https://github.com/ghostlyzsh/bevy_rapier.git", features = ["serde-serialize"] }
rand = "0.8.5"
tracing-subscriber = "0.3"
starkingdoms-common = { version = "0.1", path = "../starkingdoms-common" }

M server/config.toml => server/config.toml +1 -0
@@ 12,6 12,7 @@ prediction_distance = 0.002
num_solver_iterations = 4
num_additional_friction_iterations = 4
num_internal_pgs_iterations = 1
num_stabilization_iterations = 16
min_island_size = 128
max_ccd_substeps = 1


M server/src/main.rs => server/src/main.rs +0 -1
@@ 1760,7 1760,6 @@ fn on_close(
                            });
                        }
                    }
                    std::process::exit(0);
                }
            }
        }