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 LighXP · Jan 23, 2016 at 03:20 AM · c#coroutinewaitforsecondssimplereload

c# shooting problem (probably pretty simple)

Hi everyone, i am starting on programming and on unity, and i am having a problem, that i think it will be pretty easy to you guys solve, hehe, but i am a newbie and i just can´t.

So, my problem is that when i reload, i wait a few seconds (WaitForSeconds) and then the int Ammo = int MaxAmmo, and then i can shoot, but when it happens my Ammo do not decrease for a few seconds, cause it gets being replaced by the MaxAmmo.

Here´s the Code :

 using UnityEngine;
 using System.Collections;
 
 public class Shoot : MonoBehaviour {
 
     public float BulletSpeed;
     public Rigidbody2D Bullet;
     public Transform Origin;
     private Rigidbody2D BulletRB;
     public int Ammo;
     public int MaxAmmo;
     public float Reload;
 
 
     public IEnumerator Reloading() {
         yield return new WaitForSeconds (Reload);
         Ammo = MaxAmmo;
 
     }
 
 
 
     void Awake () {
         Ammo = MaxAmmo;
     }
     
 
     void Update () {
         if (Input.GetMouseButtonDown (0)) {
             if(Ammo > 0){
                 Ammo--;
                 BulletRB = Instantiate (Bullet, Origin.position, Origin.rotation) as Rigidbody2D;
                 BulletRB.AddForce (Vector2.up * BulletSpeed);
             }
             else {
                 StartCoroutine (Reloading());
                 StopCoroutine (Reloading());
             }
         }
 
             
 
     }
 }
 

Note : I Want it to drecrease cause i have a code on the screen showing the int Ammo, and when it reloads it shows "Reloading", and when it finishes my bullets keep decreasing and increasing back again for a few seconds..

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

2 Replies

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

Answer by DCordoba · Jan 23, 2016 at 04:55 AM

this is because, you launch the coroutine in update() function, so each frame with 0 Ammo you launch a new corroutine reloading()

I suggest use a semaphore, i.e. a bool to control if player is reloading.

some like this.

 using UnityEngine;
 using System.Collections;

 

 public class Shoot : MonoBehaviour {

 
 public float BulletSpeed;
 public Rigidbody2D Bullet;
 public Transform Origin;
 private Rigidbody2D BulletRB;
 public int Ammo;
 public int MaxAmmo;
 public float Reload;
 public bool IsReloading = false;
 
 public IEnumerator Reloading() {
     IsReloading = true;
      yield return new WaitForSeconds (Reload);
      Ammo = MaxAmmo;
     IsReloading = false;
 }
 
 
 
 void Awake () {
      Ammo = MaxAmmo;
 }
  
 
 void Update () {
     if(!IsReloading){
         if (Input.GetMouseButtonDown (0)) {
             if(Ammo > 0){
                  Ammo--;
                  BulletRB = Instantiate (Bullet, Origin.position, Origin.rotation) as Rigidbody2D;
                  BulletRB.AddForce (Vector2.up * BulletSpeed);
             }else {
                  StartCoroutine (Reloading());
             }
         }
     } 
 }
 }

in oter way you not need to stop the coroutine, it will end alone, and this not is the way to stop a coroutine.

is some like this

 Coroutine CReloading = StartCoroutine (Reloading());
 StopCoroutine (CReloading);








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
avatar image
1

Answer by LighXP · Jan 23, 2016 at 02:37 PM

Thanks dude, it works fine!

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

66 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

Related Questions

Wait time after coroutine's wait seconds is complete 0 Answers

How to animate a spinning wheel? 1 Answer

StartCoroutine not listening to parameters 1 Answer

Coroutine WaitForSeconds ignoring StopAllCoroutines... How can I do it? 0 Answers

Am I using this Coroutine and IEnumerator correctly? 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