How to snapshot the entire world? #1288
-
How to snapshot the entire world? Used for network rollback. |
Beta Was this translation helpful? Give feedback.
Answered by
SanderMertens
Aug 1, 2024
Replies: 1 comment 1 reply
-
The only builtin mechanism that can do this is |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
hasikill
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The only builtin mechanism that can do this is
world.to_json()
andworld.from_json()
. See the reflection examples.