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 Hiero7 · Feb 05, 2013 at 05:24 AM · transformparticleslookatparticle emitter

Using legacy particles and transform.LookAt()

I'm trying to create a cannon enemy that faces the player and fires a particle. When the particle collides with the player, the player dies. I was fudging around with quaternions and atan2 before, but that didn't work out, so I started using transform.LookAt() on the enemy itself and while that properly rotates the enemy to face the players, it screws with the particles for some reason. The particles now shrink and fade out just before they reach the player and depending on the location of the player they sometimes fly off into a random direction. Does anyone know why this occurs and if there's a way to fix it so that the particle emitter emits particles at their proper speed and size without fading out before reaching the player?

Comment
Add comment · Show 3
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 Loius · Feb 05, 2013 at 05:26 AM 0
Share

You'll have to post a screencap of your particle setup. You might try toggling your world/local setting.

avatar image Hiero7 · Feb 05, 2013 at 05:32 AM 0
Share

Here's the setup I'm new to Unity so I'm not familiar with all the nuances of the particle systems yet.

And here's the code managing the enemy rotation:

     protected void Update$$anonymous$$ovement(float deltaTime){
         //rotate the enemy to face the player if the player is within a certain range
         Vector3 enemyPos = new Vector3(this.x, this.y, this.z);
         Vector3 playerPos = new Vector3(0,0,0);
         if(controller.playerEntity!=null)
         {
             playerPos = controller.playerEntity.transform.position;
         }
         Vector3 distance = new Vector3(0,0,0);
         distance.x=    playerPos.x-this.transform.position.x;
         distance.y=    playerPos.y-this.transform.position.y;
         float dist = distance.magnitude;
         eTransform.LookAt(playerPos);
     }


avatar image Hiero7 · Feb 05, 2013 at 05:51 AM 0
Share

and here's a picture of the particle itself. It doesn't travel much past this point. It just travels slower and slower until it fades out.alt text

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

10 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

Related Questions

Particles wont rotate with system or parent 1 Answer

I want to pause and clear a particle system and be able to start it again, but I am using the Sparkle Rising particle which has no Particle System? 1 Answer

Particle System Scaling - Not working for velocities 2 Answers

How do I make instantiated particles inherit Transform movement from their parent object? 1 Answer

Particles in world simulationSpace follow parent transforms Z position 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