aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
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.