Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,15 @@ The NetworkManager is a required Netcode for GameObjects component that has all
- **Enable Scene Management**: When checked, Netcode for GameObjects will handle scene management and client synchronization for you. When not checked, you will have to create your own scene management scripts and handle client synchronization.
- **Load Scene Time Out**: When Enable Scene Management is checked, this specifies the period of time the `NetworkSceneManager` will wait while a scene is being loaded asynchronously before `NetworkSceneManager` considers the load/unload scene event to have failed/timed out.

### Distributed authority network topology

> [!NOTE]
> The distributed authority network topology requires Multiplayer Services. If the Multiplayer Services package is not installed, the **Network Topology** property will not be displayed.

- **Network Topology**: Defines the network topology to use.
- **Client-Server**: Selects the client-server network topology.
- **Distributed authority**: Selects the distributed authority network topology.

## NetworkManager sub-systems
NetworkManager is also where you can find references to other Netcode related management systems:<br/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,10 @@ The authority of any NetworkObject can always change ownership, as outlined in [

### Ownership permission settings

The following ownership permission settings, defined by [`NetworkObject.OwnershipStatus`](https://docs.unity3d.com/Packages/com.unity.netcode.gameobjects@latest?subfolder=/api/Unity.Netcode.NetworkObject.OwnershipStatus.html), control how ownership of NetworkObjects can be changed during a distributed authority session:
> [!NOTE]
> Permissions are only valid when using the distributed authority network topology that requires Multiplayer Services. If the Multiplayer Services package is not installed, the permissions setting will not be displayed.

The following ownership permission settings, defined by [`NetworkObject.OwnershipStatus`](xref:Unity.Netcode.NetworkObject.OwnershipStatus), control how ownership of NetworkObjects can be changed during a distributed authority session:

|**Ownership setting**|Description|Related Property|Multi-select|
|-----|-----|-----|-----|
Expand Down