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 Eriks.indesign · Jan 07, 2016 at 02:05 PM · rigidbodynetworkingmultiplayerkeyboard

Rigid body kick over network (DEADLINE)

I have a game with a ball. Players can join in and everything looks fine and their position sync perfectly. My problem is that when the client player tries to kick the ball with the kick script the ball doesn't move, like it doesn't register the add force. The client player can only slightly push the ball, but it feels extremely heavy.

I'm a student and this is my first time making a networked game so any help is very much appreciated. I'm using UNET so I'm just using the standard network components.

 using UnityEngine;
 using System.Collections;
 using UnityEngine.Networking;
 
 public class TriggerKick : NetworkBehaviour{
     
     Rigidbody rb;
     GameObject ball;
     public float kickThrust;
     public float dirKick;
     
     public NetworkIdentity BallnetworkIdentity;
     
     public KicktriggerChecker kickTriggerChecker;
     
     //public NetworkTransform ballNetworkTransform;
     
   
     // Use this for initialization
     void Start()
     {
         
         kickTriggerChecker.BallInRange = false;
         ball = GameObject.FindGameObjectWithTag("Ball");
         rb = ball.GetComponent<Rigidbody>();
         BallnetworkIdentity = ball.GetComponent<NetworkIdentity>();
         //ballNetworkTransform = ball.GetComponent<NetworkTransform>();
         
         Debug.Log("Player started is local");
     }
 
     void Update()
     {
         //first propper Kick interation
         if (kickTriggerChecker.BallInRange && Input.GetKey(KeyCode.Space) && Input.GetButtonDown("Fire1"))
         {
             Transmitkick(Vector3.up);
         }
 
         else if (kickTriggerChecker.BallInRange && Input.GetKey(KeyCode.LeftShift) && Input.GetButtonDown("Fire1"))
         {
             Transmitkick(Vector3.down);
         }
 
         else if (kickTriggerChecker.BallInRange && Input.GetKey(KeyCode.D) && Input.GetButtonDown("Fire1"))
         {
            Transmitkick(Vector3.right);
         }
 
         else if (kickTriggerChecker.BallInRange && Input.GetKey(KeyCode.A) && Input.GetButtonDown("Fire1"))
         {
             Transmitkick(Vector3.left);
         }
 
         else if (kickTriggerChecker.BallInRange && Input.GetButtonDown("Fire1"))
         {
             Transmitkick(Vector3.zero);
         }
     }
     
     
     [Client]
     void Transmitkick (Vector3 direction)
     {
         Debug.Log("local player is about transmitting kick");
         if(isLocalPlayer)
         {
             Debug.Log("local player is transmitting kick");
             BallnetworkIdentity.localPlayerAuthority = true;
             //ballNetworkTransform.transformSyncMode = NetworkTransform.TransformSyncMode.SyncNone;
             CmdRecieveTransmission (direction);
             kick (direction);
             return;
         }
         
     }
     
     [Command]
     void CmdRecieveTransmission (Vector3 direction)
     {  
         
         if(isLocalPlayer)
         {
             Debug.Log("local player is recieving local kick");
             return;
         }
          Debug.Log("player is recieving none local kick");
          BallnetworkIdentity.localPlayerAuthority = false;
          //ballNetworkTransform.transformSyncMode = NetworkTransform.TransformSyncMode.SyncRigidbody3D;
          kick(direction);
          
     }
     
     void kick (Vector3 direction)
     {
         //Debug.Log("kick" + direction);
         rb.AddForce(transform.forward * kickThrust * Time.deltaTime, ForceMode.Impulse);
         rb.AddForce(direction * dirKick * Time.deltaTime, ForceMode.Impulse);
     }
     
 }
 
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

59 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

Related Questions

Adding Force over network 0 Answers

Networked nonplayer objects only effected by the client hosting the server? 0 Answers

[UNET] Network Transform doesnt work for the host. On Client it works seemless. 0 Answers

[uNET] Instantiated gameobjects not syncing for new clients 1 Answer

[PUN] All players control one object 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