Skip to content

Commit 4847b40

Browse files
Incrementing Tools patch version (2.2.0 -> 2.2.1) (#1358)
Co-authored-by: Dominik Ries <dominik.ries@unity3d.com>
1 parent 035e52d commit 4847b40

File tree

8 files changed

+35
-5
lines changed

8 files changed

+35
-5
lines changed

docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ module.exports = {
344344
lastVersion: "current",
345345
versions: {
346346
current: {
347-
label: "2.2.0",
347+
label: "2.2.1",
348348
path: "current",
349349
},
350350
"2.1.0": {

sidebarsTools.js

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ module.exports = {
3434
},
3535
{
3636
"type": "doc",
37-
"id": "profiler"
37+
"id": "multiplayer-tools-window"
3838
},
3939
{
4040
"type": "doc",
41-
"id": "multiplayer-tools-window"
42-
},
41+
"id": "profiler"
42+
},
4343
{
4444
"type": "doc",
4545
"id": "RNSM"
@@ -52,6 +52,10 @@ module.exports = {
5252
"type": "doc",
5353
"id": "netscenevis"
5454
},
55+
{
56+
"type": "doc",
57+
"id": "hierarchy-network-debug"
58+
},
5559
{
5660
"collapsed": true,
5761
"type": "category",
Loading
207 KB
Loading

static/img/tools/tools-window-1.png

-88.2 KB
Loading

tools/about.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@ The Multiplayer Tools package provides a variety of tools to analyze, debug, and
1212
| | [Network Simulator](network-simulator.md) |
1313
| | [Runtime Network Stats Monitor](runtime-stats-monitor.md) |
1414
| | [Network Scene Visualization](network-scene-vis.md) |
15+
| | [Hierarchy Network Debug View](hierarchy-network-debug.md) |
1516

1617
The [Multiplayer Tools Window](tools-window.md) provides convenient access to all the tools mentioned above.

tools/hierarchy-network-debug.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
id: hierarchy-network-debug
3+
title: Hierarchy Network Debug View
4+
---
5+
6+
The Hierarchy Network Debug View allows you to visually identify ownership of networked objects in your Unity project.
7+
8+
## Requirements
9+
10+
* Unity Editor version 6 or later.
11+
* Multiplayer Tools package version 2.2.1 or later.
12+
13+
## Using the Hierarchy Network Debug View
14+
15+
You can enable the Hierarchy Network Debug View by navigating to **Window** > **Multiplayer Tools** and selecting **Enable** next to it in the list of tools.
16+
17+
When enabled, it provides an overlay on the right-hand side of your **Hierarchy** window that identifies which objects are networked (with a small network cube logo).
18+
19+
When you enter Play mode it also shows who owns the object (client ID), and whether the current client has ownership of this object (purple crown over network logo). This overlay can be particularly useful when working on [distributed authority](https://docs-multiplayer.unity3d.com/netcode/current/terms-concepts/distributed-authority/) multiplayer projects.
20+
21+
![Screenshot of the Hierarchy Network Debug View enabled](/img/tools/HierarchyOverlayOn.png)
22+
23+
You can also use the Hierarchy Network Debug View in conjunction with the [Network Scene Visualization tool](network-scene-viz.md).
24+
25+
![Screenshot of the Hierarchy Network Debug View enabled with Network Scene Visualization tool](/img/tools/HierarchyOverlayAndNetSceneVis.png)

tools/tools-window.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Multiplayer Tools Window
44
---
55

66
The Multiplayer Tools window provides convenient access to all of the multiplayer tools and their documentation in one place.
7-
In the case where some tools are unavailable because of a missing dependency, an explanatory message is displayed.
7+
In the case where some tools are unavailable because of a missing dependency, an explanatory message is displayed and you can open the Package Manager directly from the Multiplayer Tools Window.
88

99

1010
You can open the window by navigating to **Window** > **Multiplayer Tools**.

0 commit comments

Comments
 (0)