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 /
  • Help Room /
avatar image
0
Question by Qinect · Sep 21, 2015 at 06:16 PM · c#transformlerprepeating

Object moving chaotically using lerp and repeating.

My gameobject (cube) is moving between the points I've placed as empty gameobjects. But its not doing it smoothly but does it very fast. And I can't figure out why. I've tried using some if and else statements, but it either does the same or doesn't move at all. Also adjusting repeatRate and time seems to be doing nothing. Any help regarding my mistakes will be much appreciated. Here is my code:

 using UnityEngine;
 using System.Collections;
 
 public class MoveAround : MonoBehaviour 
 {
     public Transform[] points;
     public float moveSpeed;
     public float time = 10f;
     public float repeatRate;
     // Use this for initialization
     void Start () 
     {
         InvokeRepeating ("Update",time,repeatRate);
     }
     
     // Update is called once per frame
     void Update () 
     {
         int pointsIndex = Random.Range (0, points.Length);
         transform.position = Vector2.Lerp (transform.position, points[pointsIndex].position, moveSpeed);
     }
 }
 


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

1 Reply

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

Answer by Key_Less · Sep 21, 2015 at 08:07 PM

You have a couple things wrong here.

First off, you do not need to Invoke the update function from Start(), Update() is called for you every frame which leads to your next issue. You are changing the point you are lerping to every single frame (line 19).

What you want to do is change the point the box is lerping to after it has reached it's current destination. I would personally use a series of coroutines to handle this instead of the Update method.

 public float LerpRate;
 public float RepeatRate;
 public Transform[] Points;

 // Use this for initialization
 void Start ()
 {
     StartCoroutine(LerpCube());
 }
 
 /// <summary>
 /// This will be responsible for selecting a random point that the box will interpolate to.
 ///  A new random point will be selected only after the object has finished it's interpolation.
 /// </summary>
 private IEnumerator LerpCube()
 {
     // This will loop forever and continually lerp the box to random points.
     while(true)
     {
         var randomIndex = Random.Range(0, Points.Length);
         yield return StartCoroutine(LerpToPoint(Points[randomIndex].position));
         // Time to wait in seconds before we interpolate to the next point.
         yield return new WaitForSeconds(RepeatRate);
     }
 }
 
 /// <summary>
 /// This coroutine performs the interpolation and updates the objects position.
 /// </summary>
 /// <param name="destination">The desired position to interpolate the object to.</param>
 private IEnumerator LerpToPoint(Vector2 destination)
 {
     var timeStep = 0.0f;
     var startPoint = transform.position;
     while(timeStep < 1.0f)
     {
         timeStep += Time.deltaTime / LerpRate;
         transform.position = Vector2.Lerp(startPoint, destination, timeStep);
         yield return null;
     }
 }
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

29 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

Related Questions

If statement not getting called after Lerping a Scale 1 Answer

Lerping Camera Between Two Points 0 Answers

Coroutine: delay transform rotation but start transform movement immediately 2 Answers

Problem with Mathf.Lerp 1 Answer

Movement and Direction script bugging out 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