I want to do the following in coherence:
When the host player loads a specific scene, I would like all the other players to load that scene too automatically.
How do I achieve that in coherence?
I want to do the following in coherence:
When the host player loads a specific scene, I would like all the other players to load that scene too automatically.
How do I achieve that in coherence?
Hi, your host can send a command to all of the clients to let them know they need to transition scenes. The actual scene transition on each client can be accomplished using the normal Unity methods - how you transition your game scenes is up to you and your gameplay. (See sending commands: Messaging with Commands | coherence Documentation)
However coherence does automatically handle keeping your connection alive and letting the replication server know what scene you’re on - you can find that setup here: Scene management | coherence Documentation