Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
2 captures
12 Jun 22 - 14 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 Tides · Jul 18, 2011 at 04:43 AM · rotationrigidbodyslow down

Small part of script creating lots of lag

I have these objects that select a random location then rotate to face it then move towards it. If I have about 8 in the game they don't cause any problems but when I put in more than that the game starts to slows down a lot.

I have 25 in game currently most of which are out of the cameras clipping plane but the FPS is about 9.

Code is as follows.

targetposXZ = Vector3(targetpos.x,transform.position.y,targetpos.z);

//face target

transform.rotation = Quaternion.Slerp(transform.rotation, Quaternion.LookRotation(targetposXZ - transform.position), rotationSpeed * Time.deltaTime);

//move forward

this.rigidbody.AddRelativeForce (0, 0, moveSpeed * Time.deltaTime);

Is there anything I can do to solve this? Gameplay requires quite a few of these objects.

Cheers.

Comment
Add comment · Show 7
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 Dreamblur · Jul 18, 2011 at 04:53 AM 0
Share

How often are you perfor$$anonymous$$g those operations?

avatar image Tides · Jul 18, 2011 at 04:56 AM 0
Share

I'm doing it in the update function, so its always going. The objects need to turn and move constantly.

avatar image Dreamblur · Jul 18, 2011 at 05:20 AM 0
Share
  1. You are applying a distributed force during Update(). While doing that is totally valid, it is not recommended at all. Distributed forces are actually applied to a rigidbody during the physics step, and since Update() is not synched with the physics step, the change in speed of your rigidbody will never be constant. If your game ends up running near 25fps, then your rigidbody will be moving at roughly half the intended speed.

  2. How often do your objects need to turn? How often does the new point to rotate towards get chosen? Since you're slerping the rotation towards the randomly chosen direction, I am led to believe that you don't need to be calling this method every frame. It would be most beneficial to your frame rate to transform this method into a looping coroutine with a randomized delay.

avatar image Tides · Jul 18, 2011 at 05:26 AM 0
Share

Before I was using -

transform.Translate(Vector3.forward moveSpeed Time.deltaTime);

For the movement but changing it to AddForce seemed to help a bit.

The object needs to constantly turn slowly to face the random point, if i add a delay won't the turning become slightly jumpy?

avatar image Tides · Jul 18, 2011 at 05:42 AM 0
Share

Ok, I found the issue. It would seem its not the script at fault but rather the child of the gameObject.

Thanks.

Show more comments

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Why does my rigidbody slows down at time ? 1 Answer

Lookat Direction by AddTorque? 0 Answers

Problem with rigidbody rotation 2 Answers

Rotating a MeshCollider 0 Answers

Have an object bounce off colliders instead of drift 2 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