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 TheBattalion · Jun 23, 2013 at 12:42 AM · flashnotworkingi

MuzzleFlash not working

please help i followed narutoisgreat1234's tutorial about muzzle flash exactly. but when i shoot the muzzle flash goes in random places like up down left right and sometimes even off the camera. how do i make it so the muzzle flash sticks to the barrel. it is a particleemitter and is 3d not a 2d plane. he is my script for the muzzle flash:

     var Range : float = 1000;

     var Force : float = 1000;
     
     var Clips : int = 20;
     
     var BulletPerClip : int = 30;
     
     var ReloadTime : float = 2.1;
     
         var Damage : int = 20;
     
         var BulletsLeft : int = 0;
         
             var ShootTimer : float = 0;
             
             var ShootCooler : float = 0.9;
             
             public var ShootAudio : AudioClip;
             
             public var ReloadAudio : AudioClip;
             
             var HitParticles : ParticleEmitter;
             
             var muzzleFlash : ParticleEmitter;
             
                 var muzzleCooler : float = 0.1;
                 
                 var muzzleFlashTimer : float = 0;
                 
                 var light1 : GameObject;
                 
                 var light2 : GameObject;
                 
                 var light3 : GameObject;
             
             var MuzzleSpeed : int = 200000;
             
                 var KeyTimer : float = 0;
                 
                  var KeyCooler : float = 1;


function Start(){

     BulletsLeft = BulletPerClip;
     
     muzzleFlash.emit = false;
     
     HitParticles.emit = false;
     


}

function Update () {

 if( KeyTimer > 0){
 
 KeyTimer -= Time.deltaTime;
 
 }


     if( KeyTimer > 0){
     
     KeyTimer = 0;
     
     }
 

if( muzzleFlashTimer > 0){

muzzleFlashTimer -= Time.deltaTime;

  MuzzleFlashShow();
 

}

if( muzzleFlashTimer < 0){

  muzzleFlashTimer = 0;
 
 

}

         if( ShootTimer > 0){
         
         ShootTimer -= Time.deltaTime;
         
         }
         
         if( ShootTimer < 0){
         
            ShootTimer =0;
         
         }
         
         if( KeyTimer ==0){
         if(Input.GetKey(KeyCode.Mouse0) && BulletsLeft){
         if( ShootTimer == 0){
         
         
         PlayShootAudio();
             RayShoot();
             
             ShootTimer = ShootCooler;
             
             }            

             if( muzzleFlashTimer == 0){
 
                 muzzleFlashTimer = muzzleCooler;
                 
                                MuzzleFlashShow();
                                     

}

}

}
}

function MuzzleFlashShow (){

 if( muzzleFlashTimer > 0){
 
     muzzleFlash.emit = false;
     
         light1.active = false;
          light2.active = false;
           light3.active = false;


     }
     
     
     if( muzzleFlashTimer == muzzleCooler ){
     
     
         muzzleFlash.transform.localRotation = Quaternion.AngleAxis( Random.value * 360 * MuzzleSpeed , Vector3.forward);
     
         muzzleFlash.emit = true;
     
         light1.active = true;
          light2.active = true;
           light3.active = true;

     }


}

function RayShoot (){

     var Hit : RaycastHit;

             var DirectionRay = transform.TransformDirection(Vector3.forward);
             
             Debug.DrawRay(transform.position , DirectionRay * Range , Color.blue);
             if(Physics.Raycast(transform.position , DirectionRay , Hit, Range)){
             
             if(Hit.rigidbody){
             
             
             
             if( HitParticles){
             
             HitParticles.transform.position = Hit.point;
             HitParticles.transform.localRotation = Quaternion.FromToRotation(Vector3.forward, Hit.normal);
             HitParticles.Emit();
             
             Hit.rigidbody.AddForceAtPosition( DirectionRay * Force , Hit.point);
             Hit.collider.SendMessageUpwards("ApplyDamage" , Damage, SendMessageOptions.DontRequireReceiver);
             }
             }
             }
             
             
             BulletsLeft --;
             
             if(BulletsLeft < 0){
             
             BulletsLeft = 0;
             
             }
             
             if( BulletsLeft == 0 ){
             
             Reload();
             
             
             }


             }
             
             

function Reload (){

     PlayReloadAudio();
  yield WaitForSeconds( ReloadTime);
  
          if(Clips > 0){
          
             BulletsLeft = BulletPerClip;    
              

} }

function PlayShootAudio(){

     audio.PlayOneShot( ShootAudio);

}

function PlayReloadAudio(){

audio.PlayOneShot( ReloadAudio);

}

how do i make it so it sticks to the barrel instead of going random places????

also here is a video showing the problem http://www.youtube.com/watch?v=3js2gQTO1FU&feature=youtu.be

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

0 Replies

· Add your reply
  • Sort: 

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

15 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

Related Questions

,Muzzle flash not working 1 Answer

My Grenade isnt working, help! 2 Answers

Time.timeScale does nothing 1 Answer

Script working on some objects but not others 1 Answer

Game Works on Computer, but not on iPhone 0 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