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 |
|
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 |
|
Supported Actions
- NetworkManager.LoadScene<int, string>
- NetworkManager.UnloadScene<int, string>
- NetworkIdentity.SetOwner<NetworkId, NetworkIdentity>
- NetworkIdentity.SetActive<NetworkId, NetworkIdentity>
- NetworkIdentity.MoveToScene<NetworkId, NetworkIdentity>
- NetworkIdentity.Spawn<NetworkId, NetworkIdentity>
- NetworkIdentity.Despawn<NetworkId, NetworkIdentity>