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 vinistar60 · Mar 20, 2015 at 11:30 AM · coroutinelerpienumeratorlocalscale

Lerp not working inside Coroutine.

Hello everyone, I'm trying to somehow understand what's going on my code. It's supposed to make a circle increase in size(localScale) after it's created. It has a start and ending size, the lerp is inside a coroutine which starts only ONCE. If I debug the Vector3.Lerp it returns the same (0.7,0.7,0.7) every frame while the IEnumerator coroutine is working. Please if you can point out the error I'd be really glad. The circle gets to the ending size after the coroutine has finished, but there's no transition visible

This snippet of code brings sets the parameters of the function EnlargeCircle

     Vector3 initialSize = new Vector3(0.0f,0.0f,0.0f);
     Vector3 endingSize = new Vector3(spread*2.0f,spread*2.0f,spread*2.0f);
     StartCoroutine(EnlargeCircle(initialSize,endingSize));

Here is the function.That starts only once.

     IEnumerator EnlargeCircle(Vector3 initialSize,Vector3 endingSize)
         {
             float t = 0;
             while(t < 5)
             {
                 t += Time.deltaTime;
                 circle.localScale = Vector3.Lerp (initialSize, endingSize,  Time.deltaTime);
                 yield return null;
             }
             circle.localScale = endingSize;
         }

 




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
1

Answer by tanoshimi · Mar 20, 2015 at 11:35 AM

There are hundreds of questions and answers about how to use Lerp correctly, and it's also explained in the manual: http://docs.unity3d.com/ScriptReference/Vector3.Lerp.html, but here's one more time....:

 circle.localScale = Vector3.Lerp (initialSize, endingSize,  Time.deltaTime);

This line means:

"Set circle.localScale to be Time.deltaTime of the fraction between initialSize and endingSize."

Time.deltaTime is the time it took to render the last frame - a value somewhere around 0.02 (if your game runs at 50FPS). So, on every frame of your coroutine, you're just setting the localScale to an arbitrary fluctuating value. You need to increase the third parameter to Lerp from 0 to 1. The easiest way to do this is:

 circle.localScale = Vector3.Lerp (initialSize, endingSize, t / 5.0f);
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 hav_ngs_ru · Mar 20, 2015 at 11:46 AM 0
Share

just some days ago....

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

Issue lerping localscale 1 Answer

Why is this coroutine only firing once? 3 Answers

Static Coroutine being called endlessly 2 Answers

LERP gives final value way too early 2 Answers

Howcome this coroutine loops once? 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