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 Mini-Pao · Sep 13, 2016 at 06:47 AM · scripting problemmovementnetworkingspritenetwork

Client Sprite cant be controlled when spawned by NetworkManager

Im currently working on a mobile 2d multiplayer game. My problem is that when the client app connects to the host app, the client's sprite can't be controlled. It does not move. However the host's sprite can move freely.

Here is my PlayerManager script.

 using UnityEngine;
 using System.Collections;
 using Spine;
 using System;
 using Spine.Unity;
 using UnityEngine.Networking;
 
 public class PlayerManager : NetworkBehaviour{
     /*
         SYNC FLIP!!!!!!
      */
     
 
     static float speedX;
     static float speedY;
     static bool facingright;
 
     static Animator anim;
     static Rigidbody2D myBody;
     static SkeletonAnimator skelAnim;
 
     public override void OnStartLocalPlayer(){
         GetComponent<PlayerManager> ().enabled = true;
         Camera.main.enabled = true;
         GetComponent<FollowCam> ().enabled = true;
         GetComponentInChildren<MeshRenderer> ().enabled = true;
     }
 
     void Start () {
         if (!isLocalPlayer) {
             Camera.main.enabled = false;
         }
         myBody = GetComponent<Rigidbody2D> ();
         anim = GetComponent<Animator> ();
         facingright = true;
     }    
     // Update is called once per frame
     void Update (){    
         MovePlayer (speedX);
         if (facingright && speedX < 0 || !facingright && speedX > 0) {
             facingright = !facingright;
             flipHere ();
         }
     }
 
     void MovePlayer(float playerSpeed){
         myBody.velocity = new Vector3 (playerSpeed, myBody.velocity.y, 0);
     }
 
     public void WalkLeft(){
         speedX = 5;
         anim.SetBool ("Speed", true);
     }
 
     public void WalkRight(){
         speedX = -5;
         anim.SetBool ("Speed", true);
     }
 
     public void jump(){
         speedY = 7;
         myBody.velocity= new Vector3 (speedX, speedY,0);
     }
 
     public void PlayerIdle(){
         speedX = 0;
         anim.SetBool ("Speed", false);
     }
 
     public void PlayerJumpIdle(){
         speedY = 0;
     }
 
     void flipHere(){
         Vector3 flipSprite = transform.localScale;
         flipSprite.x *= -1;
         transform.localScale = flipSprite;
     }
 
     void OnTriggerEnter2D(Collider2D other){
         if (other.tag == "ground") {
             anim.SetBool ("isGrounded", true);
         }
     }
     
     void OnTriggerExit2D(Collider2D other){
         if (other.tag == "ground") {
             anim.SetBool ("isGrounded", false);
         }
     }
 }
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

1 Reply

· Add your reply
  • Sort: 
avatar image
1
Best Answer

Answer by softrare · Sep 13, 2016 at 09:02 AM

If you want to control the character on the client, make sure you give the client authority over it.

Activate LocalPlayerAuthority on the NetworkIdentity component.

https://gyazo.com/c6c6396cb90ab8eb6dd4994b9e86d3aa

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

How To Sync Scale in UNET 2 Answers

Different movement speeds over network 1 Answer

How to check for a host in a certain area in a open world game? 0 Answers

How can I make a smooth movement for sync transform 0 Answers

Command method dont change variables on server 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