aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorjacopograndi <jacopo.grandi@outlook.it>2022-08-09 08:44:53 +0200
committerjacopograndi <jacopo.grandi@outlook.it>2022-08-09 08:44:53 +0200
commit14d91f6ea23789b5f0ef3402448a1cc12a013acb (patch)
treefc69ef5cefb5003a5b0d179c061d8aee352dab8f /README.md
parentad260b2690e83596b5072f884a610fd9cde56da1 (diff)
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..1a8e018
--- /dev/null
+++ b/README.md
@@ -0,0 +1,11 @@
+This branch is an integration attempt of bevy_rapier2d and bevy_ggrs.
+
+The current approach is to run rapier inside of the rollback schedule,
+deserializing and serializing the RapierContext before and after each
+rollback execution.
+
+The problem is that RapierContext is huge as it tracks the whole physics
+state, which contains the static colliders.
+
+A possible solution is to track only the rigidbodies and the contact
+graph and leave the static state.