-
My searches seem to suggest this isn't something many are interested in. Maybe because it's foolish and I lack understanding! I'm aware I can iterate through individual ticks using Currently, i am using something simple:
Just to prove to myself that I'm looking at that one tick. But how can I get all the data that's available for that tick, like a snapshot of the server at that instance? Something like:
Where the ??? is some object representing all the tick data. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Your best bet is to iterate through all of the entities - If you dump all entity props, you've pretty much dumped the entire state of the world. |
Beta Was this translation helpful? Give feedback.
Your best bet is to iterate through all of the entities -
demo.entities.entities
. Each entity has aprops
field that contains all networked properties for that entity.If you dump all entity props, you've pretty much dumped the entire state of the world.