You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 23, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: docs/components/networkmanager.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,8 +27,8 @@ When Starting a Client, the `NetworkManager` uses the IP and the Port provided i
27
27
You can use different transports and have to replace the type inside the following `GetComponent< >` accordingly, but for UNET transport it looks like this:
Copy file name to clipboardExpand all lines: docs/learn/dapper-video.md
+24-1Lines changed: 24 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,14 @@ id: dapper-video
3
3
title: How To Make A Multiplayer Game In Unity 2021.1
4
4
---
5
5
6
+
This page aims to collate a series of Multiplayer Unity Networking tutorial videos that teach various concepts of the new Unity Official Multiplayer solution MLAPI, all made by Dapper Dino. Learn more about Dapper Dino and his [Youtube channel](https://www.youtube.com/channel/UCjCpZyil4D8TBb5nVTMMaUw) and don't forget to click the subscribe button.
7
+
8
+
:::important
9
+
These tutorials use Unity v2021.1. Future versions of Unity, Unity MLAPI, and Boss Room may have changes and updates to APIs and features.
10
+
:::
11
+
12
+
## Make a Multiplayer Game
13
+
6
14
This Unity Multiplayer Networking tutorial will teach you all about the new official Unity multiplayer solution and how to get it set up quickly in your own project!
@@ -16,8 +24,23 @@ This Unity Multiplayer Networking tutorial will teach you all about the new offi
16
24
allowfullscreen
17
25
/>
18
26
27
+
## Lobby Password
28
+
29
+
This Unity Multiplayer tutorial will teach you how to implement connection approval so that clients have to send the correct password to be able to connect to the server.
Thank you to [DapperDino](https://www.youtube.com/channel/UCjCpZyil4D8TBb5nVTMMaUw) for this tutorial! This contribution is a great help to the community.
Copy file name to clipboardExpand all lines: docs/migration/migratingtomlapi.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ If you need help, contact us in the [Unity MLAPI Discord](https://discord.gg/buM
11
11
12
12
## Current limitations
13
13
14
-
Review the following limitations for upgrade and migrations from previous versions of MLAPI to Unity MLAPI:
14
+
Review the following limitations for upgrade and migrations from previous versions of UNet to Unity MLAPI:
15
15
16
16
- Naming constraints may cause issues. UNet prefixed methods with `Cmd` or `Rpc`. MLAPI requires postfix. This may require either complicated multi-line regex to find and replace, or manual updates. For example, `CommandAttribute` has been renamed `ServerRpcAttribute` and `ClientRPCAttribute` has been renamed `ClientRpcAttribute`.
17
17
- Errors for RPC postfix naming patterns do not show in your IDE.
Copy file name to clipboardExpand all lines: docs/template.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,10 @@ To serve as an example page when styling markdown based Docusaurus sites.
13
13
The doc site requires all file names in lowercase, no spaces, with dashes used as needed. This includes Markdown, images, videos, and downloadable files.
14
14
:::
15
15
16
+
## Simple Template
17
+
18
+
If you need a simple template to start a new page, see the [*/template/markdown.md*](https://github.com/Unity-Technologies/com.unity.multiplayer.docs/blob/master/templates/markdown.md) file in your local cloned files. This file gives you simple Markdown to get started. For more Markdown formats, see this page's code.
19
+
16
20
## Markdown Frontmatter
17
21
18
22
All Markdown files require some information at the top of every file indicating the title, id, and other attributes as needed.
<h1className="blog-title">Get the latest news!</h1>
115
+
<pclassName="blog-subtitle">New releases, tips and tricks, contribution news, and much more...see the blog! Every month we highlight releases, new content, and community news. </p>
0 commit comments