Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • 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
2
Question by firestorm713q · Feb 07, 2016 at 07:58 PM · networkinglobbydisconnect

[UNET] How to handle disconnection?

I'm currently working on a multiplayer card game, and I'm trying to handle player disconnections, and finding frustratingly little in the docs about what cleanup needs to be done when stopping the server, leaving the lobby, leaving a match, destroying matches and ensuring that players can't join a match with 0 players already in it.

 public override void OnLobbyServerDisconnect(NetworkConnection conn)
     {
         if (isHost)
         {
             Debug.LogError("Destroying Host!");
             matchMaker.DestroyMatch((UnityEngine.Networking.Types.NetworkID)MatchNetworkID, OnDestroyMatch);
         }
         else
         {
             DropConnectionRequest dropReq = new DropConnectionRequest();
             dropReq.networkId = (UnityEngine.Networking.Types.NetworkID)MatchNetworkID;
             dropReq.nodeId = (UnityEngine.Networking.Types.NodeID)MatchNodeID;
             matchMaker.DropConnection(dropReq, OnConnectionDrop);
         }
         base.OnLobbyServerDisconnect(conn);
     }

     public void DisconnectFromNetwork()
     {
         numUsers = 0;
         if (isHost)
         {
             StopHost();
             StopMatchMaker();
         }
         else
         {
             StopClient();
         }
     }

isHost is a boolean set when the server is started on the host.

What steps need to be taken to ensure a clean disconnect when a player clicks the disconnect button?

Comment
Add comment · Show 1
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 mohaaaaamed · Feb 07, 2016 at 09:31 PM 0
Share

sorry but i didn't FULL understand you question do you mean how to disconnect a client when he hit a button or what ?

1 Reply

· Add your reply
  • Sort: 
avatar image
1

Answer by RonnyKibet · Aug 08, 2016 at 01:45 PM

 NetworkManager.singleton.StopHost();

I use that to disconnect the host and clients at the same time by attaching to a button. One thing to note is that if the host that started the match clicks the button, all other clients disconnects, but when a clients clicks the button, only the client that clicked is disconnected and the host keeps running.

Comment
Add comment · Show 1 · 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 Rodolfo-Rubens · Mar 14, 2017 at 03:23 AM 0
Share

StopHost is freezing the editor for some reason...

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.

Follow this Question

Answers Answers and Comments

6 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Network Lobby/Manager - Spawn player when I tell it to 1 Answer

New multiplayer setting broke Network Lobby 0 Answers

Player Prefab on Lobby Managers? 5 Answers

[Multiplayer Lobby] Spawned enemies not seen in client's space.... 1 Answer

Difference between lobby and network manager 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges