Skip to content

Commit 836e939

Browse files
authored
Adding beta callout box for da (#1363)
1 parent f84378e commit 836e939

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

docs/learn/distributed-authority-quick-start.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ title: Distributed authority quickstart for Netcode for GameObjects
55

66
Use this guide to learn how to create your first [distributed authority](../terms-concepts/distributed-authority.md) Netcode for GameObjects project. It walks you through the connection setup, including connecting to the distributed authority service, and adding basic gameplay.
77

8+
:::note Beta feature
9+
Distributed authority is still in beta. During the beta phase, using the distributed authority service provided by the [Multiplayer Services package](https://docs.unity.com/ugs/en-us/manual/mps-sdk/manual) is free. When distributed authority is fully released, [using the service will incur a cost](https://unity.com/products/gaming-services/pricing).
10+
:::
11+
812
## Prerequisites
913

1014
Before you begin, you need the following:
@@ -152,7 +156,7 @@ public class ConnectionManager : MonoBehaviour
152156

153157
:::note
154158

155-
It's important to wait until `OnClientConnectedCallback` has been triggered before spawning objects. Spawning objects early will result in errors and unexpected behaviour.
159+
It's important to wait until `OnClientConnectedCallback` has been triggered before spawning objects. Spawning objects early will result in errors and unexpected behaviour.
156160

157161
:::
158162

docs/terms-concepts/distributed-authority.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ title: Distributed authority topologies
55

66
Distributed authority is one possible [network topology](network-topologies.md) you can use for your multiplayer game.
77

8+
:::note Beta feature
9+
Distributed authority is still in beta. During the beta phase, using the distributed authority service provided by the [Multiplayer Services package](https://docs.unity.com/ugs/en-us/manual/mps-sdk/manual) is free. When distributed authority is fully released, [using the service will incur a cost](https://unity.com/products/gaming-services/pricing).
10+
:::
11+
812
## Defining distributed authority
913

1014
In a distributed authority topology, game clients share responsibility for owning and tracking the state of objects in the network and have the authority to spawn and manage objects themselves, with additional options to configure ownership permissions. A small, lightweight central state service keeps track of changes in spawned object states and routes network traffic. There is no central server simulating the game: all clients run their own partial simulations and communicate their updates directly to other clients (via the central state service).

docs/terms-concepts/network-topologies.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ Network topology defines how a network is arranged. In the context of multiplaye
77

88
The two primary network topologies that Netcode for GameObjects supports are [client-server](#client-server) and [distributed authority](#distributed-authority).
99

10-
<!-- Link to Multiplayer Center here when available, as a 'if you don't know which topology to use, there's this tool' -->
11-
1210
## Client-server
1311

1412
### Dedicated game server

0 commit comments

Comments
 (0)