• Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
1
Question by adrastos · Nov 12, 2015 at 04:30 PM · c#networkingnetworkmultiplayer-networking

NetworkManager.OnServerDisconnect not being called

Hello everyone, I will try to keep this nice and simple.

Basically I have a MonoBehaviour with a main class that inherits from the NetworkManager class. Inside this main class I have a NetworkManager.OnServerConnect and a NetworkManager.OnServerDisconnect.

The first one is called OK when the Client connects to the Server, but when the Client disconnects from the Server the second method is not called. Looks something like this:

 public class UpdatedNetwork : NetworkManager
 {
     // Called on the Server when a Client connects to the Server.
     public void OnServerConnect (NetworkConnection conn)
     {
         // The code in here runs fine when a Client connects to the Server.
     }
 
     // Called on the Server when a Client disconnects from the Server.
     public void OnServerDisconnect (NetworkConnection conn)
     {
         // The code in here does not run when a Client disconnects from the Server.
     }
 }

Any ideas? Thanks.

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

2 Replies

· Add your reply
  • Sort: 
avatar image
2

Answer by Miscellaneous · May 06, 2016 at 03:48 PM

Maybe use override?

 public override void OnServerDisconnect( NetworkConnection conn )
 {
     NetworkServer.DestroyPlayersForConnection( conn );
 }

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image
0

Answer by NFMynster · Aug 25, 2016 at 04:55 PM

I created my own disconnect method, that checks if the caller is the server and calls "StopClient" & "StopServer" accordingly. That way I could clean up after the disconnected players.

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Welcome to Unity Answers

The best place to ask and answer questions about development with Unity.

To help users navigate the site we have posted a site navigation guide.

If you are a new user to Unity Answers, check out our FAQ for more information.

Make sure to check out our Knowledge Base for commonly asked Unity questions.

If you are a moderator, see our Moderator Guidelines page.

We are making improvements to UA, see the list of changes.



Follow this Question

Answers Answers and Comments

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

How can I receive which slider was selected 0 Answers

Player object on host can interact with objects, client players cannot. 0 Answers

How to write a multiplayer game that uses a dedicated server? 0 Answers

UNet: NetworkManager is not automatically spawning the player prefab when a client connects (though it does spawn the host-player) 0 Answers

[Command] call is not being executed 0 Answers

  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges