Update about the state of the project: This project is based on Unity 6000.0 and is currnetly being actively maintained. Feel free to continue to use it as a learning resource or simply for inspiration.
Thanks for checking out this sample!
This is a fully functional, first person multiplayer shooter game made in Unity and with full source and assets. It was developed by a small team from Unity Technologies. Our goals are to test and showcase new features in Unity and to be of use for teams who can bootstrap on top of this, extract useful bits and tools or simply learn from and get inspired by what is in the project.
Reach out in the forum.
The project is using a number of technologies: We use the HD Render Pipeline, meaning all content has been authored for HDRP. We are also using Unity Transport as well as the Entity-Component System. In the case of ECS, we have primarily adopted the "ECS-pattern" and use it in hybrid mode with a lot of regular components. As more and more features of Unity become available in ECS-aware versions, we will migrate to them.
Current status at a glance:
Unity version: 6000.0.58f2 Platforms : Windows and macOS (client and server) and Linux (server only) To get the project folder you need to clone the project.
IMPORTANT: This project uses Git Large Files Support (LFS). Downloading a zip file using the green button on Github will not work. You must clone the project with a version of git that has LFS. You can download Git LFS here: https://git-lfs.github.com/.
The project size is about 18GB (size of Assets folder). Your cloned repository will be almost double of that due to git state. If it is much smaller, you most likely did not have LFS when you cloned.
Once you have cloned the repository, you should install the version of Unity that is listed above in the prerequisites section. Make sure you include windows standalone support in your installation (and Linux support if you want to build the Linux headless server).
The following guide should take you to the point where you can hit play in the editor and run around the levels and also build a standalone version of the game and use it to spin up a server and connect a few clients to it.
The first time you open the project you need patience! It takes a while to import all the assets.
Once the editor is ready, open the Project Tools Window by navigating to FPS Sample > Windows > Project tools.
It should look like this:
Keep this window docked as you will use it a lot. From here you can open the levels, build assetbundles and build standalone players. Because this is a multiplayer game you will need to work with standalone players a lot.
From the Project Tools window click Open next to Level_00. Our levels are split into multiple scenes but using these buttons will ensure you open all the scenes that make up a level.
Once opened, try entering playmode in the editor. You should now be able to run around in the level. This is what we call 'preview mode'. Here you can move around and test your level, player traversal and weapons.
Leave playmode again and in the Project Tools window, verify that it says "Building for: StandaloneWindows64..." under the Game headline. If it does not, change your platform in the usual way, using File > Build settings window.
Now, in the Project Tools window in the bundles section, press All [force].
This will build the levels and other assets into assetbundles. The first time around this will take a significant amount of time as all shaders have to be compiled.
Once you have built the bundles, hit Build game in the game section. This builds the standalone player. Again, first time will be slow.
When this is done, locate the "Quick start" section at the bottom of the Project Tools window. Fill out the settings like this:
Mode: Multiplayer
Level: Level_00
Clients: 1
Headless: Checked
Use editor: Unused
Now hit the green Start button. This should launch two processes: one is a standalone, headless server, the other is a client that will attempt to connect to the server.
Congratulations! If you made it this far you should celebrate a bit!
Check out the Documentation folder for more information. In particular, the Getting Started Guide is a good place to, well, start.
Our intention is that you can use everything in this project as a starting point or as bits and pieces in your own Unity games. For the legal words, see LICENSE.md.

