• 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
Question by aer · Apr 29, 2011 at 10:04 AM · machinegun

I've got a machinegun with 6 "cans", but I'd like to make each can shoot after the other. HELP!!!

The machinegun is this:alt text If u can't see it go to http://www.cringel.com/node/186

Here's my code

var fireRate : float = 0.3;
var delay : float    = 0;
var colpo_fuori : GameObject;// copertura del proiettile
var projectile : Rigidbody;// proiettile che esce dalla canna
var Spawn1: Transform;//
var Spawn2: Transform; //
var Spawn3: Transform;  //
var Spawn4: Transform;  //Le 6 zone dalle quali spara la mitragliatrice
var Spawn5: Transform; //
var Spawn6: Transform;//
var Shoot_Bullet_Speed : int; // velocit dei proiettili
var BulletCount : int; //Ammount of bullets remaining in the clip
var MagCapacity = 999; //The maximum capacity of bullets in the clip

function Update()

{

if(Input.GetMouseButtonDown(0) && BulletCount >= 1) {

  InvokeRepeating("Shoot", delay, fireRate);

}

if(Input.GetMouseButtonUp(0)) {

  CancelInvoke("Shoot");

}

}

function Shoot() {

clone1 = Instantiate(projectile, Spawn1.position, Quaternion.identity); clone1.AddForce(transform.forward*Shoot_Bullet_Speed);

 clone2 = Instantiate(projectile, Spawn2.position, Quaternion.identity);
 clone2.AddForce(transform.forward*Shoot_Bullet_Speed);  

 clone3 = Instantiate(projectile, Spawn3.position, Quaternion.identity);
 clone3.AddForce(transform.forward*Shoot_Bullet_Speed);  

 clone4 = Instantiate(projectile, Spawn4.position, Quaternion.identity);
 clone4.AddForce(transform.forward*Shoot_Bullet_Speed);  

 clone5 = Instantiate(projectile, Spawn5.position, Quaternion.identity);
 clone5.AddForce(transform.forward*Shoot_Bullet_Speed);  

 clone6 = Instantiate(projectile, Spawn6.position, Quaternion.identity);
 clone6.AddForce(transform.forward*Shoot_Bullet_Speed);  



}

Comment

People who like this

0 Show 0
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

1 Reply

· Add your reply
  • Sort: 
avatar image

Answer by Bunny83 · Apr 29, 2011 at 11:39 AM

Well, a chaingun works like any other gun. It always fires only one barrel at a time and always at the same position, usually the topmost. The "ring" of barrels is rotating and only the topmost shoots. It has 6 barrels to prevent overheating since the rate of fire is only 1/6. Do you even rotate your barrels?

Comment

People who like this

0 Show 0 · 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.

Welcome to Unity Answers

If you’re new to Unity Answers, please check our User Guide to help you navigate through our website and refer to our FAQ for more information.

Before posting, make sure to check out our Knowledge Base for commonly asked Unity questions.

Check our Moderator Guidelines if you’re a new moderator and want to work together in an effort to improve Unity Answers and support our users.

Follow this Question

Answers Answers and Comments

No one has followed this question yet.

Related Questions

How can I make robot fire a machine gun? 1 Answer

Machine gun 2 Answers

Machine gun fire 2 Answers

Machine gun help 1 Answer

Reload when press "r"? 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