Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 The-Gabo · Dec 12, 2019 at 02:55 PM · particlesoptimizationloop

Custom particle system loop optimization

Hi there,

I have a sort of custom particle system that takes an insane amount of calculation time by frames. With each loop, i calculate the target position of the particle, turn , and move it.

It's a very complex particle system, so there not much I can DELETE from the loop but :

I wanted to know if there was something terribly wrong in my loop that requires so much processing in the profiler, or if maybe there was another way to handle does kind of cases.

Here the part of the code that repeats every frame and a gif of the effect afterwards: Thanks in advance

 public void UpdateBoids()
     {
         if (Vector3.Distance(rotationCenter.position, center.position) > triggerDistance)
         {
             return;
         }
 
         t = Time.deltaTime;
 
         Vector3 centerPos = center.position;
         Vector3 targetPos = centerPos;
         Vector3 rotCenterPos = rotationCenter.position;
         //
         Vector3 boidPos;
         Vector3 boidFrwd;
 
         Vector3 camPos = CameraBehavior.Instance.GetTransform.position;
 
         for (int rotationIndex = 0; rotationIndex < rotationAmounts; rotationIndex++)
         {
             int l = rotationIndex * boidsPerRotations;
 
             for (int i = l; i < l + boidsPerRotations; i++)
             {
                 // SELECT BOID //
                 b = _boids[i];
 
                 boidPos = b.position;
                 boidFrwd = b.forward;
 
                 // TRAIL // 
                 if (followingTrail && trailIndexes[i] < trail_TargetBoids.trailPoints.Count)
                 {
                     targetPos = trail_TargetBoids.trailPoints[trailIndexes[i]];
 
                     if (Vector3.Distance(boidPos, targetPos) < distanceToFollowTrail)
                         ++trailIndexes[i];
                 }
                 else
                 {
                     targetPos = centerPos;
                 }
 
                 // set boolds
                 nearRotationCenter = Vector3.Distance(boidPos, rotCenterPos) < rotationDistance;
 
                 // set rotation
                 if (nearRotationCenter)
                 {
                     // SET POSITION //
                     p = targetPos + Quaternion.AngleAxis(angles[i], rotationAxis[rotationIndex]) * (rotationDirections[rotationIndex] * distances[i]);
 
                     // SET SCALE //
                     b.localScale = Vector3.Lerp(b.localScale, initScale, scaleSpeed * t);
 
                     // LERP POS TO TARGET POINT
                     b.position = Vector3.Lerp(boidPos, p, moveSpeeds[i] * t);
 
                     spriteRenderers[i].transform.LookAt(camPos);
                     spriteRenderers[i].color = Color.Lerp(spriteRenderers[i].color, clear, t);
                 }
                 else
                 {
                     // SET POSITION //
                     p = targetPos + Quaternion.AngleAxis(angles[i], rotationAxis[rotationIndex]) * (rotationDirections[rotationIndex] * distances[i] * regroupToCenterAmount);
 
                     // SET SCALE //
                     b.localScale = Vector3.Lerp(b.localScale, targetScales[i], scaleSpeed * t);
 
                     // AIM TOWARD TARGET //
                     b.forward = Vector3.MoveTowards(boidFrwd, (p - boidPos), targetSpeed * t);
 
                     // MOVE TOWARD TARGET //
                     b.Translate(boidFrwd * moveSpeeds[i] * t, Space.World);
 
                     spriteRenderers[i].transform.LookAt(camPos);
                     spriteRenderers[i].color = Color.Lerp(spriteRenderers[i].color, initColor, t);
 
                 }
 
                 // ADVANCE ANGLES //
                 angles[i] += rotationSpeeds[i] * t;
             }
 
             if (!Player.Instance.boids.waveActive)
             {
                 // ROTATION AXIS //
                 rAxis[rotationIndex] += new Vector3(0.15f, 0.5f, 1f) * Time.deltaTime;
                 rDir[rotationIndex] += new Vector3(1f, 0.15f, 0.5f) * Time.deltaTime;
 
                 rotationAxis[rotationIndex] = new Vector3(Mathf.Sin(rAxis[rotationIndex].x), Mathf.Sin(rAxis[rotationIndex].y), Mathf.Sin(rAxis[rotationIndex].z));
                 rotationDirections[rotationIndex] = new Vector3(Mathf.Sin(rDir[rotationIndex].x), Mathf.Sin(rDir[rotationIndex].y), Mathf.Sin(rDir[rotationIndex].z));
             }
         }
     }

alt text

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

127 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 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 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 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 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 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 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 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 avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Need tips for optimizing main func that loops through thousands of particles 0 Answers

Very Bad Lag from ~20 Large Particles 0 Answers

Mix Simulate in Local and World Space for Fire Effect 1 Answer

How do I optimize the "Player Loop"? 2 Answers

Fire effect with minimal overdraw 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