From 9d5925b4d01ef3b5933bdc5ff15af82d46d0d06c Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Wed, 15 Jun 2022 11:32:56 -0500 Subject: [PATCH] Make physics serializable and deterministic to help with debugging. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 309236d..8cfbc7c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ features = [ [dependencies] backtrace = "0.3" bevy_input_actionmap = { git = "https://github.com/lightsoutgames/bevy_input_actionmap" } -bevy_rapier2d = "0.14" +bevy_rapier2d = { version = "0.14", features = ["enhanced-determinism", "serde-serialize"] } bevy_synthizer = { git = "https://labs.lightsout.games/projects/bevy_synthizer" } bevy_tts = { git = "https://github.com/lightsoutgames/bevy_tts", default-features = false, features = ["tolk"] } coord_2d = "0.3"