Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 raysfanBuilds · Nov 10, 2014 at 09:37 AM · networkingsoundsounds

Networking Gun Fire Sound

So, I currently am learning how to work with guns and unity using a toolkit. However, sounds aren't networked. I've played around with RPC and all. But I can't seem to get it to work. However, with playing around with sound and RPC. I think I have it mostly prepped up, except I'm getting an error. The error is:

"Assets/Scripts/Weapons/Weapon.cs(27,56): error CS1061: Type UnityEngine.AudioSource[]' does not contain a definition for PlayOneShot' and no extension method PlayOneShot' of type UnityEngine.AudioSource[]' could be found (are you missing a using directive or an assembly reference?)"

The Code is quite long. The RPC code starts at line 22. but here is the weapon code. Sorry it's so long..but don't know how much you would need to help me solve this. All I want to make the RPC happen is whenever the gun is fired, play the shot sound across the network.

 using UnityEngine;
 using System.Collections;
 
 [System.Serializable]
 public class ReloadSound
 {
     public string name = "Mag out";
     public AudioClip clip;
     public float length;
     public AudioClip reloadSounds;
 }
 
 
 public class Weapon : MonoBehaviour
 {
     public Animation anim;
     public AnimationClip fireAnim;
     public AnimationClip reloadAnim;
     public AnimationClip reloadEmptyAnim;
     public AnimationClip drawAnim;
 
     [RPC]
     public void PlaySound() { 
         if(networkView.isMine == true) { 
             networkView.RPC("PlaySound", RPCMode.Others);
         }
         GetComponentsInChildren<AudioSource>().PlayOneShot(reloadSounds);
     }
     
     #region bools
     public bool reloading;
     public bool[] canAims;
     private bool canAim;
     public bool[] canReloads;
     private bool canReload;
     public bool[] canFires;
     private bool canFire;
     #endregion
 
     #region stats
     public float fireRate = 0.1f;
     public float timer = 0;
     [SerializeField]
     protected int bulletsLeft = 30;
     [SerializeField]
     protected int bulletsPerMag = 30;
     [SerializeField]
     protected int magsLeft = 10;
     public float range = 2000;
     public float damageMin = 10;
     public float damageMax = 20;
     public Transform bulletGo;
     public LayerMask hitLayers;
     public GameObject blood;
     public GameObject concrete;
     public GameObject wood;
     public GameObject metal;
     public GameObject dirt;
     #endregion
 
     #region readOnly
     public int bulletsLeftRead = 30;
     public int bulletsPerMagRead = 30;
     public int magsLeftRead = 10;
     #endregion
 
 
     #region components
     public CharacterValues cv;
     public PlayerAnimations pa;
     #endregion
 
     #region sound
     public AudioSource localSource;
     public AudioClip fireSound;
     public ReloadSound[] drawSound;
     public ReloadSound[] reloadSounds;
     public ReloadSound[] reloadSoundsEmpty;
     #endregion
 
     #region ads
     public Camera cam;
     public bool aiming;
     public float hipFov = 75;
     public float aimFov = 55;
     private float curFov = 75;
     public Vector3 hipPos;
     public Vector3 crouchPos;
     public Vector3 aimPos;
     private Vector3 curPos;
     #endregion
 
     #region recoil
     public Transform camKB;
     public Transform wepKB;
     public float minKB;
     public float maxKB;
     public float minKBSide;
     public float maxKBSide;
     public float returnSpeed = 5f;
     #endregion
 
     #region muzzle
     public GameObject muzzle;
     #endregion
 
     #region crosshair
     public float sizeMultiplier = 1f;
     public float aimSpread;
     public float basicSpread = 30;
     public float maximumSpread = 100;
     public float spreadReturnTime = 5;
     public float spreadAddPerShot = 5;
     public float spreadTemp;
     private float spread = 30;
 
     //Crosshair Textures
     public Texture2D crosshairFirstModeHorizontal;
     public Texture2D crosshairFirstModeVertical;
 
     #endregion
 
     #region private
     private Vector2 pivot;
     #endregion
 
     #region hitMark
     public Texture2D tex;
     public float size = 32;
     private float hitAlpha;
     public AudioClip hitMarkerSound;
     #endregion
 
 
     void Start()
     {
         muzzle.SetActive(false);
         if (networkView.isMine)
         {
             spreadTemp = basicSpread;
             spread = basicSpread;
             StartCoroutine(CheckBools());
             StartCoroutine(Draw());
         }
         else
         {
             this.enabled = false;
         }
     }
 
     void Update()
     {
         if (networkView.isMine)
         {
             if (hitAlpha > 0) hitAlpha -= Time.deltaTime;
             spread = Mathf.Clamp(spread, 0, maximumSpread);
             if (aiming) spread = aimSpread;
             else spread = Mathf.Lerp(spread, spreadTemp + cv.velMag * 2, Time.deltaTime * 8);
             if (spreadTemp > basicSpread) spreadTemp -= Time.deltaTime * spreadReturnTime;
             pivot = new Vector2(Screen.width / 2, Screen.height / 2);
             bulletsLeftRead = bulletsLeft;
             bulletsPerMagRead = bulletsPerMag;
             magsLeftRead = magsLeft;
             camKB.localRotation = Quaternion.Lerp(camKB.localRotation, Quaternion.identity, Time.deltaTime * returnSpeed);
             wepKB.localRotation = Quaternion.Lerp(wepKB.localRotation, Quaternion.identity, Time.deltaTime * returnSpeed);
             cam.fieldOfView = Mathf.Lerp(cam.fieldOfView, curFov, Time.deltaTime * 10);
             transform.localPosition = Vector3.Lerp(transform.localPosition, curPos, Time.deltaTime * 10);
             if (Screen.lockCursor)
                 CheckInput();
             canReloads[1] = true;
             canAims[1] = !cv.running;
             canFires[1] = !cv.running;
             if (aiming)
             {
                 curFov = aimFov;
                 curPos = aimPos;
             }
             else
             {
                 curFov = hipFov;
                 if (cv.state == 0)
                 {
                     curPos = hipPos;
                 }
                 else if (cv.state == 1)
                 {
                     curPos = crouchPos;
                 }
             }
 
             if (!canAim) aiming = false;
         }
         else
         {
             this.enabled = false;
         }
     }
 
     void OnGUI()
     {
         if (networkView.isMine)
         {
 
             float w = crosshairFirstModeHorizontal.width;
             float h = crosshairFirstModeHorizontal.height;
             Rect position1 = new Rect((Screen.width + w) / 2 + (spread * sizeMultiplier), (Screen.height - h) / 2, w, h);
             Rect position2 = new Rect((Screen.width - w) / 2, (Screen.height + h) / 2 + (spread * sizeMultiplier), w, h);
             Rect position3 = new Rect((Screen.width - w) / 2 - (spread * sizeMultiplier) - w, (Screen.height - h) / 2, w, h);
             Rect position4 = new Rect((Screen.width - w) / 2, (Screen.height - h) / 2 - (spread * sizeMultiplier) - h, w, h);
             if (!aiming)
             {
                 GUI.DrawTexture(position1, crosshairFirstModeHorizontal);     //Right
                 GUI.DrawTexture(position2, crosshairFirstModeVertical);     //Up
                 GUI.DrawTexture(position3, crosshairFirstModeHorizontal);     //Left
                 GUI.DrawTexture(position4, crosshairFirstModeVertical);        //Down
             }
 
             GUI.color = new Color(1, 1, 1, hitAlpha);
             GUI.DrawTexture(new Rect((Screen.width - size) / 2, (Screen.height - size) / 2, size, size), tex);
 
         }
     }
 
     void CheckInput()
     {
         aiming = (canAim && Input.GetKey(KeyCode.Mouse1));
         if (!reloading && Time.time > timer && canFire && Input.GetKey(KeyCode.Mouse0) && bulletsLeft > 0 && Screen.lockCursor)
         {
             FireOneShot();
         }
         if (!reloading && canReload && magsLeft > 0 && Input.GetKeyDown(KeyCode.R) && Screen.lockCursor)
         {
             reloading = true;
             StartCoroutine(Reload());
         }
     }
 
     void FireOneShot()
     {
         spreadTemp += spreadAddPerShot;
         timer = Time.time + fireRate;
         anim.Rewind(fireAnim.name);
         anim.Play(fireAnim.name);
         localSource.clip = fireSound;
         localSource.PlayOneShot(fireSound);
         StartCoroutine(MuzzleFlash());
         StartCoroutine(Kick3(camKB, new Vector3(-Random.Range(minKB, maxKB), Random.Range(minKBSide, maxKBSide), 0), 0.1f));
         StartCoroutine(Kick3(wepKB, new Vector3(-Random.Range(minKB, maxKB), Random.Range(minKBSide, maxKBSide), 0), 0.1f));
 
         float actualSpread = Random.Range(-spread, spread);
         //Vector3 position = new Vector3(bulletGo.position.x - actualSpread, bulletGo.position.y - actualSpread, bulletGo.position.z);
         Vector3 direction = gameObject.transform.TransformDirection(new Vector3(Random.Range(-0.01f, 0.01f) * spread, Random.Range(-0.01f, 0.01f) * spread, 1));
         RaycastHit hit2;
         if (Physics.Raycast(bulletGo.position, direction, out hit2, range, hitLayers))
         {
             OnHit(hit2);
         }
         bulletsLeft--;
     }
 
     void DoHitMark()
     {
         hitAlpha = 2;
         audio.PlayOneShot(hitMarkerSound, 1f);
     }
 
     void OnHit(RaycastHit hit)
     {
         if (hit.rigidbody)
         {
             hit.rigidbody.AddForceAtPosition(2000 * bulletGo.forward, hit.point);
         }
         if (hit.transform.tag == "Player")
         {
             Instantiate(blood, hit.point, Quaternion.identity);
             DoHitMark();
             if (hit.transform.root.networkView)
                 hit.transform.root.networkView.RPC("ApplyDamage", RPCMode.AllBuffered, Random.Range(damageMin, damageMax), 1);
         }
         else
         {
             if (hit.transform.tag == "Wood")
             {
                 GameObject theObj = Instantiate(wood, hit.point + hit.normal * 0.01f, Quaternion.FromToRotation(Vector3.up, hit.normal)) as GameObject;
                 theObj.transform.parent = hit.transform;
             }
             else if (hit.transform.tag == "Metal")
             {
                 GameObject theObj = Instantiate(metal, hit.point + hit.normal * 0.01f, Quaternion.FromToRotation(Vector3.up, hit.normal)) as GameObject;
                 theObj.transform.parent = hit.transform;
             }
             else if (hit.transform.tag == "Dirt")
             {
                 GameObject theObj = Instantiate(dirt, hit.point + hit.normal * 0.01f, Quaternion.FromToRotation(Vector3.up, hit.normal)) as GameObject;
                 theObj.transform.parent = hit.transform;
             }
             else
             {
                 GameObject theObj = Instantiate(concrete, hit.point + hit.normal * 0.01f, Quaternion.FromToRotation(Vector3.up, hit.normal)) as GameObject;
                 theObj.transform.parent = hit.transform;
             }
         }
     }
 
     IEnumerator Kick3(Transform goTransform, Vector3 kbDirection, float time)
     {
         Quaternion startRotation = goTransform.localRotation;
         Quaternion endRotation = goTransform.localRotation * Quaternion.Euler(kbDirection);
         float rate = 1.0f / time;
         var t = 0.0f;
         while (t < 1.0f)
         {
             t += Time.deltaTime * rate;
             goTransform.localRotation = Quaternion.Slerp(startRotation, endRotation, t);
             yield return null;
         }
     }
 
     IEnumerator Reload()
     {
         reloading = true;
         canAims[0] = false;
         canFires[0] = false;
         canReloads[0] = false;
         if (bulletsLeft > 0)
         {
             StartCoroutine(ReloadingSound(reloadSounds));
             anim.Play(reloadAnim.name);
             yield return new WaitForSeconds(reloadAnim.length);
             bulletsLeft = bulletsPerMag + 1;
             magsLeft--;
         }
         else
         {
             StartCoroutine(ReloadingSound(reloadSoundsEmpty));
             anim.Play(reloadEmptyAnim.name);
             yield return new WaitForSeconds(reloadEmptyAnim.length);
             bulletsLeft = bulletsPerMag;
             magsLeft--;
         }
         canAims[0] = true;
         canFires[0] = true;
         canReloads[0] = true;
         reloading = false;
     }
 
     IEnumerator ReloadingSound(ReloadSound[] theSound)
     {
         foreach (ReloadSound lol in theSound)
         {
             yield return new WaitForSeconds(lol.length);
             localSource.clip = lol.clip;
             localSource.Play();
         }
     }
 
     IEnumerator CheckBools()
     {
         CheckAim();
         CheckReload();
         CheckFire();
         yield return new WaitForSeconds(0.1f);
         StartCoroutine(CheckBools());
     }
 
     IEnumerator MuzzleFlash()
     {
         muzzle.SetActive(true);
         yield return new WaitForSeconds(0.1f);
         muzzle.SetActive(false);
     }
 
     void CheckAim()
     {
         canAim = false;
         foreach (bool lol in canAims)
         {
             if (!lol) return;
         }
         canAim = true;
     }
 
     void CheckReload()
     {
         canReload = false;
         foreach (bool lol in canReloads)
         {
             if (!lol) return;
         }
         canReload = true;
     }
 
     void CheckFire()
     {
         canFire = false;
         foreach (bool lol in canFires)
         {
             if (!lol) return;
         }
         canFire = true;
     }
 
     IEnumerator Draw()
     {
         canAims[0] = false;
         canFires[0] = false;
         canReloads[0] = false;
         //localSource.clip = drawSound;
         //localSource.Play();
         StartCoroutine(ReloadingSound(drawSound));
         anim.Play(drawAnim.name);
         yield return new WaitForSeconds(drawAnim.length);
         canAims[0] = true;
         canFires[0] = true;
         canReloads[0] = true;
     }
 }
 

Comment
Add comment · Show 2
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 SaraCecilia · Nov 10, 2014 at 09:37 AM 0
Share

Hi, are you having a similar problem as this person? http://answers.unity3d.com/questions/728113/cant-get-playoneshot-or-play-to-work.html

avatar image raysfanBuilds · Nov 10, 2014 at 01:38 PM 0
Share

Not necessarily. $$anonymous$$y problem is similar in the fact of trying to get a audio source to play on click. However, I want it to work with RPC as well. Considering my game is a multiplayer game.

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by rob5300 · Nov 10, 2014 at 01:19 PM

I think i may have an idea why you are experiencing this problem. You are using GetComponentsInChildren() which returns an array of all found components that you asked for. You are trying to directly run a method from it(and that creates the error). You want to use GetComponentInChildren() which will return just one object, thus allowing you to use .PlayOneShot()!

Example: (please check my syantax, my mono is not working at the mo :( )

 //Getting one component: (What you want to use in this situation)
 someObject.GetComponentInChildren<AudioSource>().PlayOneShot(myAudio);
 
 //Getting more than one component:
 AudioSource[] sources = someObject.GetComponentsInChildren<AudioSource>();
 sources[0].PlayOneShot(myAudio);

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

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

How to stop footstep sound when jumping, but continue when hitting the ground? 1 Answer

How to reproduce a sound on collision? 1 Answer

Unity Networking, connecting to sever problems :( 1 Answer

Animation & sound over network 1 Answer

How do i fix this problem in my code? please help 2 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