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 Hathakas · Aug 27, 2015 at 04:38 AM · 2dspritescalelerp

How do I scale a 2D sprite over time?

Hey all!

I'm having a hard time scaling a sprite smoothly.

I've tried a few different ways but I it keeps scaling instantly.

Here's what I have:

 void Update () 
     {
         ballSize = this.gameObject.transform.localScale;
         //enemyBallSize = enemyBall.transform.localScale;
         
         DestroyBall ();
     
         scaleSpeed = Time.deltaTime * 30;
     }

 void OnCollisionEnter2D(Collision2D coll) {
         enemyScale = coll.gameObject.transform.localScale.x;
 
 if (coll.gameObject.transform.localScale.x < ballSize.y)
         {
             currentSize = this.transform.localScale.x;
             this.transform.localScale = (new Vector2(currentSize, currentSize) + new Vector2(scale * scaleSpeed, scale * scaleSpeed));
         }


Right now, when there is a collision, the ball increases in size but it's instant. I want to be able to have it increase over like 1 second or something, and if possible I would like to have the ball increase past the size it's meant to reach, before scaling down to it's new size, like a bounce affect.

Thanks a lot!

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 GiyomuGames · Aug 27, 2015 at 04:58 AM

  1. You can write a coroutine which increases the size of the ball during 1 second (a while(true) loop inside which you increase the size and then wait for a very short amount of time).

  2. You can also set a boolean to true during all the time you want the ball to increase and then increase the scale in the update method.

  3. You can save the Time.time your collision happens and then in the update method increase the scale until the actual time is superior to the time of the collision + whatever time you want.

  4. You can use an animation which does exactly what you want, and trigger it on collision. This is probably the easiest and best way to do it.

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 Hathakas · Aug 30, 2015 at 10:59 PM 0
Share

Thanks for the pointers, first time I check into animation...had no idea I could play with scale like that! Definitely will be using the animation method!

avatar image
0

Answer by OscarScorp · Mar 31, 2019 at 12:36 AM

I found this as the easiest way for me:

 float scale = 0.01f;
 void Update()
 {
       scale += 0.05f;
       transform.localScale = new Vector2(scale, scale);
       if (scale >= 1f)
           Destroy(gameObject);
 }



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

doubt with pixels per unit 1 Answer

Sprites are invislbe if rotated or if scale is inverted in game build 1 Answer

Best way to sacale entire object in runtime?? 0 Answers

2D Sprite leaves a trail when moving diagonally 1 Answer

Adjust overlay position for different resolutions 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