Skip to content

Network Actions

Network Actions are used to listen when a network action is done, and get its result without needing to implement custom listeners or event callbacks:

1
2
3
4
NetworkManager.Instance.LoadScene(scene1).Then((id) =>
{
    Debug.Log($"Scene {id} loaded");
});

Some methods return a NetworkAction object, which can be used to chain multiple actions together. If you just want the normal result, you can use the NetworkAction.Value field:

1
var sceneName = NetworkManager.Instance.LoadScene(scene1).Value;

Supported Actions