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 Ownedbycow · Sep 25, 2015 at 08:53 PM · unity 52dissuefollowsmooth

Unity 2D Object Smooth Follow Problem C#

Okay, I want objectA to follow ObjectB but not until ObjectB is a certain distance away. The code I have works*... But its really jumpy sometimes as it only works when ObjectB is further away than 3 units, so it kicks off and on a lot. What is a way to fix this to smooth it out?

 void FixedUpdate ()
 {

     distance = Vector3.Distance(transform.position, box.transform.position);

     if (distance >= 3)
     {
         gameObject.transform.position = Vector2.MoveTowards(gameObject.transform.position, box.gameObject.transform.position, 15 * Time.deltaTime);
     }
 }
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

2 Replies

· Add your reply
  • Sort: 
avatar image
1
Best Answer

Answer by RudyTheDev · Sep 25, 2015 at 09:21 PM

Yes, don't move towards the ObjectA, rather to a point 3 units away from ObjectA. That way your MoveTowards cannot overshoot. Something like:

 Vector3 distance = box.transform.position - transform.position;

 if (distance.magnitude >= 3)
 {
     Vector3 targetPoint = box.transform.position - distance.normalized * 3;

     gameObject.transform.position =
         Vector3.MoveTowards(gameObject.transform.position, targetPoint, 15 * Time.deltaTime);
 }


Comment
Add comment · Show 1 · 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
avatar image Ownedbycow · Sep 25, 2015 at 09:35 PM 0
Share

That worked perfectly. Thanks a bunch.

I didn't think about that. The logic seems backwards from what I usually have. I like it. I'm going to start reading into magnitude and normalized as well. I have to figure out how you did that. ^_^ Thanks again.

avatar image
1

Answer by Dinosaurs · Sep 25, 2015 at 09:33 PM

FixedUpdate() should only be used for physics related code; if you're going to move an object using it's transform, it should move smoother if you do it in Update(). This is because Update() is called on every camera frame update, while FixedUpdate() is called at a fixed timestep independent of rendered frames, causing the camera and your movement system to be out of sync.

Comment
Add comment · 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.

Follow this Question

Answers Answers and Comments

2 People are following this question.

avatar image avatar image

Related Questions

How to get an object to follow another object at a set distance in 2D 3 Answers

Camera Follow sphere with ridgidbody? 4 Answers

Why does the camera smoothly follow in one direction but not the other? 0 Answers

Smooth Camera 2D 0 Answers

smooth follow 2d camera runner ios 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