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 Xkynar · Sep 21, 2015 at 07:49 PM · unity 5networkingbug

UNet reconnecting bug

I'm using Unity 5.2.0f3 32-bit (since I'm using Vuforia which only seems to work with 32-bit editor) and I tried to make a simple network example where the clients share an object which changes color when the screen is clicked. When i run two clients (one being a host), it works perfectly and it is possible to see the Player object created in the host's scene. When i disconnect the remote client, it's Player object disappears from the host's scene, which is also good, but if i connect again with the same remote client, it connects but the Player object isn't created in the host's scene again, leaving the client powerless (it can't command anything).

I've searched this bug around, and I've found a few threads about it: http://forum.unity3d.com/threads/solved-server-not-adding-player-for-reconnecting-client.333171/

http://answers.unity3d.com/questions/986941/something-special-required-to-disconnectreconnect.html

Etc.

The solutions presented propose to patch Unity. The thing is, in those threads, the version in question is 5.1, and the patch being 5.1.0p1, but i am using unity 5.2, it should already be fixed.

So, what can I do to get rid of this annoying behaviour?

Edit: I decided to post my simple player script in case it is me who isn't doing it properly.

 using UnityEngine;
 using System.Collections;
 using UnityEngine.Networking;
 
 public class CommanderController : NetworkBehaviour {
 
     // Update is called once per frame
     void Update ()
     {
         if (isLocalPlayer)
             if (Input.GetMouseButtonDown(0))
             {
                 Debug.Log("Sending Color Command");
                 CmdChangeColor();
             }
     }
 
     [Command]
     void CmdChangeColor()
     {
         RpcChangeColor(new Color(Random.Range(0.0f, 1.0f), Random.Range(0.0f, 1.0f), Random.Range(0.0f, 1.0f), 1.0f));
     }
 
     [ClientRpc]
     void RpcChangeColor(Color color)
     {
         GameObject.Find("Floor").GetComponent<Renderer>().material.color = color;
     }
 }
 

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

0 Replies

· Add your reply
  • Sort: 

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

2 People are following this question.

avatar image avatar image

Related Questions

UNET Rpc calls wrong inherited script 2 Answers

Why do I keep getting UNetWeaver error: GetWriteFunc recursion depth exceeded for NetworkInstanceId 2 Answers

properly removing a object out of the scene and syncing it with all clients and properly syncing movement 0 Answers

Unity 5 just removed all my lightmaps after 7 hours of baking 1 Answer

Gameobject only spawns on hosts game. Not on the clients. 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