Welcome!

Welcome to our community forums, full of great people, ideas and excitement. Please register if you would like to take part.

This is extra text with a test link..

Register Now

Announcement

Collapse
No announcement yet.

Skeet Shooter Question

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Skeet Shooter Question

    Hello,

    I was recently having an issue with trying to get my gun to fire (I couldn't get it to do so after I made it so the guns face downward at the start of the game), 3 birds firing from the launcher instead of just 1, and also setting it so guns are active for key presses. Here is my project so far:


    What should I do to solve this? Thank you!

    Sincerely,
    David Marquez

  • #2
    The problem is in your Start function.

    You have the line:
    Code:
    StartCoroutine(FireSkeet());
    ....three times. This means, you start the coroutine that fires the skeet three different times. Reduce that to once, and you should be good.

    Comment

    Working...
    X