Netcode part 2

Download

Unity Cheat Sheet: #48

Network Manager

  • Start host mode with NetworkManager.Singleton.StartHost()
  • Run server with NetworkManager.Singleton.StartServer()
  • Connect as client with NetworkManager.Singleton.StartClient()
  • End session with NetworkManager.Singleton.Shutdown()
  • Get players with NetworkManager.Singleton.ConnectedClients
  • Check role with NetworkManager.Singleton.IsHost/IsServer/IsClient
  • Handle connections with ConnectionApprovalCallback
  • React to events with OnClientConnectedCallback/OnClientDisconnectCallback

Network Behaviour

  • Check ownership with networkBehaviour.IsOwner
  • Verify server authority with networkBehaviour.IsServer
  • Access network components with NetworkObject/NetworkManager
  • Identify controller with networkBehaviour.OwnerClientId
  • Sync state with networkBehaviour.NetworkVariable

Network Object

  • Add to network with networkObject.Spawn()
  • Remove from network with networkObject.Despawn()
  • Check status with networkObject.IsSpawned
  • Transfer control with networkObject.ChangeOwnership()

Remote Procedure Calls

  • Client-to-server with networkBehaviour.SendServerRpc()
  • Server-to-all-clients with networkBehaviour.SendClientRpc()
  • Server-to-specific-client with networkBehaviour.SendTargetRpc()

Network Variable

  • Access data with networkVariable.Value
  • React to changes with networkVariable.OnValueChanged
  • Control access with networkVariable.ReadPerm/WritePerm

  • Scene Management
  • Sync level loading with NetworkManager.Singleton.SceneManager.LoadScene()
  • Handle level events with SceneManager.OnSceneEvent

Show More