Skip to content

Scene Management

NetBuff supports real-time scene loading/unloading, enabling more complex flows like level loading, among others. Every NetworkIdentity has the field NetworkIdentity.SceneId which indicates in which loaded scene the object resides.

Scene Id Rules

The scene where the NetworkManager is considered the main scene and receives the id 0, always being the first scene in the NetworkManager.LoadedScenes list, which stores all currently loaded scenes. A scene's id is defined by its index in the list and can vary according to the loading/unloading order of scenes.

Note

The scene id -1 is the default and always refers to the last currently loaded scene (NetworkBehaviour.LastLoadedScene). Objects are spawned in this scene by default if the scene parameter is omitted.

Warning

It's recommended to use the scene name as a persistent way to reference a scene. You can use the methods NetworkBehaviour.GetSceneName and NetworkBehaviour.GetSceneId to convert between name and id.

Loading and Unloading Scenes

To load a scene, simply use the NetworkManager.LoadScene method, and to unload, use the NetworkManager.UnloadScene method.

1
2
3
4
if (NetworkManager.Instance.IsSceneLoaded(scene1))
    NetworkManager.Instance.UnloadScene(scene1);
else
    NetworkManager.Instance.LoadScene(scene1);

Warning

It's not possible to unload the main scene where the NetworkManager resides.

Note

Only the server can load/unload scenes, but all scenes are synchronized for clients, and all other scene control-related methods and properties work as usual.

Moving Objects Between Scenes

It's possible to move a NetworkIdentity between scenes using the NetworkIdentity.MoveToScene method.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
public void Update()
{
    if(!HasAuthority)
        return;

    if (Input.GetKeyDown(KeyCode.M))
    {
        var id = SceneId + 1;
        if (id >= LoadedSceneCount)
            id = 0;

        //Moves the object to the next loaded scene
        MoveToScene(id);
    }
}

Warning

You need to have control over the NetworkIdentity to move it between scenes.