SkillAgentSearch skills...

Com.unity.multiplayer.samples.coop

A small-scale cooperative game sample built on the new, Unity networking framework to teach developers about creating a similar multiplayer game.

Install / Use

/learn @Unity-Technologies/Com.unity.multiplayer.samples.coop
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Banner <br><br>

Boss Room: a Co-op, Multiplayer RPG Sample

Made with and Including Utilities for Netcode for GameObjects

<br>

UnityVersion NetcodeVersion LatestRelease <br><br>

Boss Room is a fully functional co-op multiplayer RPG made with Unity Netcode. It is an educational sample designed to showcase typical netcode patterns that are frequently featured in similar multiplayer games. <br><br>

Boss Room Sample Overview

Boss Room is designed to be used in its entirety to help you explore the concepts and patterns behind a multiplayer game flow; such as character abilities, casting animations to hide latency, replicated objects, RPCs, and integration with Multiplayer Services sessions and Authentication services.

You can use the project as a reference starting point for your own Unity game or use elements individually. <br><br>


💡 Utilities Package

This repository also contains a Utilities package, containing reusable sample scripts. You can install it using the following manifest file entry: <br> "com.unity.multiplayer.samples.coop": "https://github.com/Unity-Technologies/com.unity.multiplayer.samples.coop.git?path=/Packages/com.unity.multiplayer.samples.coop",


<br>

For more information on the art of Boss Room, see ART_NOTES.md.

<br><br>


Readme Contents and Quick Links

<!-- TOC generated from https://luciopaiva.com/markdown-toc/ --> <details open> <summary> <b>Click to expand/collapse contents</b> </summary> </details>
<br>

Getting the project

Direct download

  • You can download the latest version of Boss Room from our Releases page.
  • Alternatively: click the green Code button and then select the 'Download Zip' option. Please note that this will download the branch that you are currently viewing on Github.
  • Windows users: Using Windows' built-in extraction tool may generate an "Error 0x80010135: Path too long" error window which can invalidate the extraction process. A workaround for this is to shorten the zip file to a single character (eg. "c.zip") and move it to the shortest path on your computer (most often right at C:\) and retry. If that solution fails, another workaround is to extract the downloaded zip file using 7zip. <br><br>

Requirements

BossRoom is compatible with the latest Unity Long Term Support (LTS) editor version, currently 6000.0 LTS. Please include standalone support for Windows/Mac in your installation.

PLEASE NOTE: You will also need Netcode for Game Objects to use these samples. See the Installation Documentation to prepare your environment. You can also complete the Get Started With NGO tutorial to familiarize yourself with Netcode For Game Objects. <br><br>

Boss Room has been developed and tested on the following platforms:

  • Windows
  • Mac
  • iOS
  • Android <br>

Boss Room's min spec devices are:

  • iPhone 6S
  • Samsung Galaxy J2 Core <br><br>

Installing Git LFS to clone locally

Boss Room uses Git Large Files Support (LFS) to handle all large assets required locally. See Git LFS installation options for Windows and Mac instructions. This step is only needed if cloning locally. You can also just download the project which will already include large files. <br><br>

Opening the project for the first time

Once you have downloaded the project, follow the steps below to get up and running:

  • Check that you have installed the most recent LTS editor version.

    • Include standalone support for Windows/Mac in your installation.
  • Add the project to the Unity Hub by clicking on the Add button and pointing it to the root folder of the downloaded project.

    • Please note : the first time you open the project Unity will import all assets, which will take longer than usual.
  • Hit the Play button. You can then host a new game or join an existing one using the in-game UI.

<br><br><br>

Exploring the project

BossRoom is an eight-player co-op RPG game experience, where players collaborate to fight imps, and then a boss. Players can select between classes that each have skills with didactically interesting networking characteristics. Control model is click-to-move, with skills triggered by a mouse button or hotkey.

One of the eight clients acts as the host/server. That client will use a compositional approach so that its entities have both server and client components.

  • The game is server-authoritative, with latency-masking animations.
  • Position updates are carried out through NetworkTransform that sync position and rotation.

Code is organized in domain-based assemblies. See the Boss Room architecture documentation file for more details. <br><br>

Registering the project with Unity Gaming Services (UGS)

Boss Room leverages several services from UGS to facilitate connectivity between players. To use these services inside your project, you must create an organization inside the Unity Dashboard. Otherwise, you can still use Boss Room without UGS. <br><br><br>

Testing multiplayer

In order to see the multiplayer functionality in action we can either run multiple instances of the game locally on your computer - using either Multiplayer Play Mode or builds - or choose to connect to a friend over the internet. See how to test for more info. <br><br>

Local multiplayer setup

First, build an executable by clicking 'File/Build Settings' in the menu bar, and then click 'Build'.<br>

Once the build has completed you can launch several instances of the built executable in order to both host and join a game. When using several instances locally, you will have to set different profiles for each instance for authentication purposes, by using the 'Change Profile' button. <br>


💡 Mac users: To run multiple instances of the same app, you need to use the command line. Run open -n BossRoom.app


<br>

Multiplayer over Internet

To play over internet, first build an executable that is shared between all players - as above.

It is possible to connect between multiple instances of the same executable OR between executables and the editor that produced it.

Running the game over internet currently requires setting up a relay.

Multiplayer Services Setup

  • Boss Room uses the Multiplayer Services Package to integrate Sessions for grouping and connecting players.

  • Alternatively you can use Port Forwarding. The https://portforward.com/ site has guides on how to enable port forwarding on a huge number of routers.

  • Boss Room uses UDP and needs a 9998 external port to be open.

  • Make sure your host's address listens on 0.0.0.0 (127.0.0.1 is for local development only). <br><br><br>


Index of resources in this project

<details open> <summary> <b>Click to expand/collapse contents</b> </summary>

Gameplay

  • Action anticipation - AnticipateActionClient() in [Assets/Scrip
View on GitHub
GitHub Stars1.9k
CategoryDevelopment
Updated1d ago
Forks585

Languages

C#

Security Score

85/100

Audited on Mar 26, 2026

No findings