diff options
| author | Geoffrey Hayes <hayesgm@gmail.com> | 2022-02-24 02:41:26 -0800 |
|---|---|---|
| committer | Sébastien Crozet <sebastien@crozet.re> | 2022-03-06 22:46:12 +0100 |
| commit | 0ef55c7df7160a6178dc52502408c3293b50a503 (patch) | |
| tree | 4ce92e3fcf9a920cd231370a5b4073fdce9f2a94 /examples3d/all_examples3.rs | |
| parent | 7703333781ccb19e533c25eb53f19a01e51858f7 (diff) | |
| download | rapier-0ef55c7df7160a6178dc52502408c3293b50a503.tar.gz rapier-0ef55c7df7160a6178dc52502408c3293b50a503.tar.bz2 rapier-0ef55c7df7160a6178dc52502408c3293b50a503.zip | |
Start to Load World State
This patch starts to load world state for debugging. The next step is to make sure that deserialization exactly matches the format of world.takeSnapshot().
Diffstat (limited to 'examples3d/all_examples3.rs')
| -rw-r--r-- | examples3d/all_examples3.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/examples3d/all_examples3.rs b/examples3d/all_examples3.rs index 0aad4c2..2b51a7f 100644 --- a/examples3d/all_examples3.rs +++ b/examples3d/all_examples3.rs @@ -25,6 +25,7 @@ mod debug_friction3; mod debug_infinite_fall3; mod debug_prismatic3; mod debug_rollback3; +mod debug_serialized3; mod debug_shape_modification3; mod debug_triangle3; mod debug_trimesh3; @@ -122,6 +123,10 @@ pub fn main() { "(Debug) shape modification", debug_shape_modification3::init_world, ), + ( + "A serialized", + debug_serialized3::init_world, + ), ]; // Lexicographic sort, with stress tests moved at the end of the list. |
