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 /
  • Help Room /
avatar image
0
Question by PRZ3M3K · Jan 08, 2017 at 09:33 AM · unity 5multiplayerparenting

Error with parenting spawned weapon on client side

Hi guys!

After week "having fun" with parenting I gave up. So my game is TPS, where i have two weapons: rifle and pistol. In game player will have option to change it. On the host side everything works beautiful, but on client no :( . Objects, that i spawned, aren't parented. Probably weapon change part also wouldn't going to work.

 using UnityEngine;
 using System.Collections;
 using UnityEngine.Networking;
 public class bodyanimcontroler : NetworkBehaviour {
     Animator animator;
     int indeks;
     float rotation;
     float xRotate;
     public static bool busy = false;
     public static int direction = 1;
     public GameObject secondary;
     public Transform main;
     public GameObject holder;
     GameObject sec;
     GameObject prim;
     public GameObject pist;
     public GameObject rifle;
     // Use this for initialization
    
     void Start ()
     {      
         animator = GetComponent<Animator>();
         Cmdspawngun();
 
     }
     [Command]
     public void Cmdspawngun()
     {
         prim = (GameObject)Instantiate(rifle, holder.transform.position, holder.transform.rotation);
         sec = (GameObject)Instantiate(pist, secondary.transform.position, secondary.transform.rotation);
         prim.transform.SetParent(holder.transform);
         sec.transform.SetParent(secondary.transform);
         NetworkServer.Spawn(sec);
         NetworkServer.Spawn(prim);
     }
     
     // Update is called once per frame
     void Update()
     {
         if (Input.GetKey("r") && busy == false)
         {
             StartCoroutine(Reload());
         }
         xRotate = Input.GetAxis("Mouse Y") * CameraControl.mouseSens;
         float oldrot = rotation;
         rotation = xRotate + rotation;
         if (rotation > -60 && rotation < 60)
         {
             animator.SetFloat("look", rotation);
         }
         else
         {
             rotation = oldrot;
         }
         if (Input.GetButtonDown("Change weapon") && busy == false)
         {
             StartCoroutine(change());
         }
     }
     IEnumerator change()
     {
             busy = true;
             animator.SetFloat("chg", -direction);
             animator.SetTrigger("change");        
             yield return new WaitForSeconds(0.25f);
             if (direction == 1)
             {
                 prim.transform.parent = main.transform;
                 prim.transform.position = main.transform.position;
                 prim.transform.rotation = main.transform.rotation;          
             }
             else
             {
                 sec.transform.parent = secondary.transform;
                 sec.transform.position = secondary.transform.position;
                 sec.transform.rotation = secondary.transform.rotation;
             }
             yield return new WaitForSeconds(0.5f);
             if (direction == 1)
             {
                 sec.transform.parent = holder.transform;
                 sec.transform.position = holder.transform.position;
                 sec.transform.rotation = holder.transform.rotation;
             }
             else
             {
                 prim.transform.parent = holder.transform;
                 prim.transform.position = holder.transform.position;
                 prim.transform.rotation = holder.transform.rotation;
             }
             yield return new WaitForSeconds(0.25f);
             direction *= -1;        
             busy = false;       
     }   
     IEnumerator Reload()
     {
         busy = true;        
         animator.SetTrigger("reload");
         yield return new WaitForSeconds(1.1f);
         busy = false;        
     }
 }

Please help me guys. i haven't any ideas...

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

152 People are following this question.

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

Related Questions

How would I create a 4 camera local multiplayer game? 1 Answer

Cannot join Internet Match 2 Answers

Local Multiplayer Input 0 Answers

vehicle/gameobject moving/listing/rotating when made parent of main character (child) game object 1 Answer

Using syncVar in networkManager 1 Answer


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