• 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 Wesley21spelde · Nov 03, 2016 at 07:57 AM · scripting probleminputnotworkingmachinegunfire1

MachineGun Script Not Working Dont Know Why!

hey guys can you help me i dont know whats wrong with the script it does not work and i dont get errors .i can play my game but not$$anonymous$$ng happens when i try to fire with Mouse 0 or Left Ctrl


 var range = 100.0;
 var fireRate = 0.05;
 var force = 10.0;
 var damage = 5.0;
 var bulletsPerClip = 40;
 var clips = 20;
 var reloadTime = 0.5;
 private var $$anonymous$$tParticles : ParticleEmitter;
 var muzzleFlash : Renderer;
 
 private var bulletsLeft : int = 0;
 private var nextFireTime = 0.0;
 private var m_LastFrameShot = -1;
 
 function Start () {
 
 }
 
 function Update (){
     if (Input.GetButtonDown("Fire1")) // i also tried mouse0 no effect.
     {
         SendMessage("Fire");
     }
 }
 
 function LateUpdate() {
     if (muzzleFlash) {
         // We shot t$$anonymous$$s frame, enable the muzzle flash
         if (m_LastFrameShot == Time.frameCount) {
             muzzleFlash.transform.localRotation = Quaternion.AngleAxis(Random.value * 360, Vector3.forward);
             muzzleFlash.enabled = true;
 
             if (GetComponent.<AudioSource>()) {
                 if (!GetComponent.<AudioSource>().isPlaying)
                     GetComponent.<AudioSource>().Play();
                 GetComponent.<AudioSource>().loop = true;
             }
         } else {
         // We didn't, disable the muzzle flash
             muzzleFlash.enabled = false;
             enabled = false;
             
             // Play sound
             if (GetComponent.<AudioSource>())
             {
                 GetComponent.<AudioSource>().loop = false;
             }
         }
     }
 }
 
 function Fire () {
     if (bulletsLeft == 0)
         return;
     
     // If there is more than one bullet between the last and t$$anonymous$$s frame
     // Reset the nextFireTime
     if (Time.time - fireRate > nextFireTime)
         nextFireTime = Time.time - Time.deltaTime;
     
     // Keep firing until we used up the fire time
     w$$anonymous$$le( nextFireTime < Time.time && bulletsLeft != 0) {
         FireOneShot();
         nextFireTime += fireRate;
     }
 }
 
 function FireOneShot () {
     var direction = transform.TransformDirection(Vector3.forward);
     var $$anonymous$$t : RaycastHit;
     
     // Did we $$anonymous$$t anyt$$anonymous$$ng?
     if (Physics.Raycast (transform.position, direction, $$anonymous$$t, range)) {
         // Apply a force to the rigidbody we $$anonymous$$t
         if ($$anonymous$$t.rigidbody)
             $$anonymous$$t.rigidbody.AddForceAtPosition(force * direction, $$anonymous$$t.point);
         
         // Place the particle system for spawing out of place where we $$anonymous$$t the surface!
         // And spawn a couple of particles
         if ($$anonymous$$tParticles) {
             $$anonymous$$tParticles.transform.position = $$anonymous$$t.point;
             $$anonymous$$tParticles.transform.rotation = Quaternion.FromToRotation(Vector3.up, $$anonymous$$t.normal);
             $$anonymous$$tParticles.Emit();
         }
 
         // Send a damage message to the $$anonymous$$t object            
         $$anonymous$$t.collider.SendMessageUpwards("ApplyDamage", damage, SendMessageOptions.DontRequireReceiver);
     }
     
     bulletsLeft--;
 
     // Register that we shot t$$anonymous$$s frame,
     // so that the LateUpdate function enabled the muzzleflash renderer for one frame
     m_LastFrameShot = Time.frameCount;
     enabled = true;
     
     // Reload gun in reload Time        
     if (bulletsLeft == 0)
         Reload();            
 }
 
 function Reload () {
 
     // Wait for reload time first - then add more bullets!
     yield WaitForSeconds(reloadTime);
 
     // We have a clip left reload
     if (clips > 0) {
         clips--;
         bulletsLeft = bulletsPerClip;
     }
 }
 
 function GetBulletsLeft () {
     return bulletsLeft;
 }

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 RangerDog · Nov 03, 2016 at 09:35 AM

Put a few Debug.Log in your script, see where it goes wrong. For example: Start, update, when clicking, firing shot etc. That way you can find out where it goes wrong, and we can help you better :D

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

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

Event from simultaneously pressing button + axis? 2 Answers

Is there a way to modify Input Manager so that an ax is be able simulate an input from code? 0 Answers

How do I get MonoDevelop, because visual studio keeps opening? 2 Answers

Input System does not exist in the namespace Unity Engine 0 Answers

Input Handling for asset store scripts 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