CoherenceSyncConfigRegistry Save Modes
The CoherenceSyncConfigRegistry
is a ScriptableObject that will hold a list of references to your existing CoherenceSyncConfig
objects.
CoherenceSyncConfig
is a separate ScriptableObject that holds the configuration for each of your networked objects.
Since the Registry needs to keep a list of references, in coherence we offer three different ways you can handle your CoherenceSyncConfigRegistry
asset:
Sub Assets: The
CoherenceSyncConfig
assets will be saved as sub-assets of theCoherenceSyncConfigRegistry
asset.
Standalone Assets: The
CoherenceSyncConfig
assets will be saved separately in the Assets/coherence/baked folder, theCoherenceSyncConfigRegistry
will simply keep a list of references to them.
Dynamic Standalone Assets: The
CoherenceSyncConfig
assets will be saved separately in the Assets/coherence/baked folder. TheCoherenceSyncConfigRegistry
will not be saved to disk but it will be generated on-demand in memory.
Was this helpful?