Skip to content

Getting Started

In the following sections, you'll find guidance on setting up a NetBuff project. We recommend using Unity 2023.2 or a newer version.

Installation Guide

  1. Go to the Unity Package Manager (Window -> Package Manager).
  2. Click the "+" button in the top-left corner of the window.
  3. Select "Add package from git URL...".
  4. Paste the link below and click "Add".
  5. That's it! Now the package is installed. You can also download samples if you wish.
1
https://github.com/buff-buff-studio/NetBuff-Lib.git#package

Network Setup

Create an empty scene to begin with. We recommend using the Basic (Built-In) template:

Create Scene

Now, create a new GameObject and add the following components to it:

Components

Network Manager

The NetworkManager is the main networking component. It manages connections, objects, packets, and everything else related to networking, being a singleton component in the networking setup.

Network Manager GUI

The NetworkManagerGUI is a temporary component used for testing purposes. It creates a menu where you can manage network connection, find all servers on the network, and see network statistics.

UDP Network Transport

The UDPNetworkTransport is the basic transport used to establish server-client connections over the internet.

Set Network Transport

Now we need to set the network transport in the network manager. Simply drag and drop the transport onto the transport field of the manager:

Set Transport

Creating the player prefab

If you start the game and try to host a server, you'll see an error in the console. By default, we need to provide a player prefab to the NetworkManager to spawn the player object. Following the steps below, we can create a simple player prefab:

  1. Create a new capsule.
  2. Add a NetworkTransform component.
  3. Drag it as a prefab into the Project View.
  4. Delete it from the scene.

Creating the prefab registry

Now you're one step away from success! Even if you set the player prefab, all networking ends must know which prefab the server is trying to spawn, so we need to set up our NetworkPrefabRegistry first.

  1. Create a new NetworkPrefabRegistry in the Project Folder context menu.
  2. Add the prefab to the registry list (Click the + button to add a new slot to the registry).
  3. Click the N button to generate a new ID.
  4. Set it in the registry field of the NetworkManager.
  5. Set the player prefab in the player prefab field of the NetworkManager.

Setup Finished

Done!

Now we're ready! You can click the play button and then click Start Host to start hosting (Client + Server).

Running the Server

Simple Movement Test

By creating a simple script, we can test our server. You can use the code below or create your own logic!

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
using NetBuff.Components;
using UnityEngine;

namespace NetBuff.Samples.GettingStarted
{
    public class BasicMovement : NetworkBehaviour
    {
        private void Update()
        {
            if (!HasAuthority)
                return;

            var move = new Vector3(Input.GetAxis("Horizontal"), Input.GetAxis("Vertical"), 0);
            transform.position += move * Time.deltaTime * 3;
        }
    }
}   

Add it to the player and run the game again! You can even build and join the server as a client because your multiplayer game is already working!

Movement Test