Lockstep networking (at least similar) infrastructure for UdonSharp.
Lockstep relies on determinism to keep the state of the world in sync. Rather than syncing the whole state of a given system each time, just input actions get synced which modify the state. This allows for large and constantly mutating synced states.
Input actions and lockstep events are run in the same lockstep ticks in the exact same order on every single client. This is required for determinism, and as a byproduct there are no network race conditions.
Ultimately all syncing is done using byte arrays, both for game state syncing for late joiners as well as for input actions. Lockstep can take these byte arrays and let the user import and export them as strings/text, similar to save files in games, so long as game states - the systems using lockstep - have support for it.
Head to my VCC Listing and follow the instructions there.
The majority of what Lockstep is and its documentation does not matter to world creators. However a few things are quite relevant and are outlined here.
Online: On github.
Offline: In the Documentation~
folder, as the Unity's Manual suggests. Probably the easiest way to do it how Unity wants you to do it is by right clicking the package in the Project window (the Packages list is collapsed by default), wait for the packages panel to finish loading, and then press the Documentation button there.