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
0
Question by jayl · Jun 26, 2016 at 03:29 AM · networkingmultiplayerplayerdestroynetworkplayer

Don't destroy player after disconnecting or calling ClientScene.RemovePlayer()

I have the following scenario: In my game there are 4 players, one of them is controlled by the host the other 3 are controlled by the AI, located on the server. When another client connects, one of the AI controlled players will then be controlled by the new client. This works so far using the following code:

public override void OnServerAddPlayer(NetworkConnection conn, short playerControllerId)
{
    //base.OnServerAddPlayer(conn, playerControllerId);
    for (int i = 0; i < 4; i++)
    {
        if (allPlayers[i].clientAuthorityOwner == null)
        {
            NetworkIdentity player = allPlayers[i];
            NetworkServer.AddPlayerForConnection(conn, player.gameObject, playerControllerId);
            player.AssignClientAuthority(conn);
            return;
        }
    }
}

However the problem appears when the client disconnects again or ClientScene.RemovePlayer() is called. Since his player has client authority the player will be destroyed. However, this is not what I want. Instead the AI should take over the player again in order to keep exactly 4 players.

Overriding NetworkManager.OnServerDisconnect() prevents desotroying the player when the client disconnects, but not if ClientScene.RemovePlayer() is called on the client:

public override void OnServerDisconnect(NetworkConnection conn)
{
    //base.OnServerDisconnect(conn);
}

I have already found this in the documentation but I have no clue how to disable it:

http://docs.unity3d.com/ScriptReference/Networking.NetworkServer.DestroyPlayersForConnection.html

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 jayl · Jun 25, 2016 at 10:54 AM 0
Share

Just to make it clear: A client should be able to control multiple players. I plan to make a game that supports both split screen and lan multiplayer at the same time. If one of the split screen players leaves again, ClientScene.RemovePlayer() has to be called to give control back to the server.

1 Reply

· Add your reply
  • Sort: 
avatar image
1

Answer by jayl · Jun 28, 2016 at 04:38 PM

I have found a working solution by overriding the NetworkManager.OnServerRemovePlayer() Method:

public override void OnServerRemovePlayer(NetworkConnection conn, PlayerController player)
{
    GameObject newPlayer = Instantiate(playerPrefab);
    NetworkServer.Spawn(newPlayer);
    for (int i = 0; i < 4; i++)
    {
        if(allPlayers[i] == player.unetView)
        {
            allPlayers[i] = newPlayer.GetComponent<NetworkIdentity>();
            break;
        }
    }
    base.OnServerRemovePlayer(conn, player);
}
However, I do not really like this approach since the player has to be destroyed and recreated instead of just changing some authority stuff (or whatever). Therefore I will not mark this as the correct answer.

I hope someone knows a better approach.

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.

Follow this Question

Answers Answers and Comments

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Unity networking tutorial? 6 Answers

Unity Multiplayer - Instantiate prefab 1 Answer

Remove players and close server in Unity Multiplayer Game 0 Answers

[Multiplayer] Lobby/Staging/Matchmaking flow: Quickstart using NetworkLobbyManager? 2 Answers

Multiplayer: Only see Players moving on Host 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