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 Noxury · Mar 09, 2017 at 04:08 PM · uicolor changenewtween

How to fade color of new UI-components with iTween

Hi, I want to make an ui image to fade in using iTween.

it seems that the new UI (since 4.6) components' color properties are not supported? What am I doing wrong in this code snippet?

 iTween.ValueTo(icon.gameObject, iTween.Hash("from", new Color(1f,1f,1f,0f), "to", new Color(1f,1f,1f,1f), "time", 2f, "onupdate", "OnColorUpdated"));

I even downloaded the updated version of iTween.

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
0
Best Answer

Answer by AdbC99 · Jul 25, 2018 at 05:06 AM

Bit of a late answer @Noxury but here is how I am doing it:

     [Tooltip("Reference to a UI image for fading in")][SerializeField] 
     private UnityEngine.UI.Image FadeImage;
 
     [Tooltip("Length of the fade")][SerializeField] 
     private float FadeTimer = 2f;
 
     [Tooltip("Delay until fades beghins")][SerializeField] 
     private float FadeInDelay = 1f;
 
     [Tooltip("Color to fade to")][SerializeField] 
     private Color EndColor = Color.white;
 
     [Tooltip("Color to fade from")][SerializeField] 
     private Color StartColor = Color.clear;
 
     public void updateColor(float val)
     {
         FadeImage.color = ((1f-val) * StartColor) + (val * EndColor);
     }
 
     private void Fade()
     {
         // Commented out unity cross fade since this seems to 
         // have bugs when working on transparent images
         // FadeImage.CrossFadeColor(FadeColor, FadeTimer, false, true);
        iTween.ValueTo(this.gameObject,iTween.Hash("from",0f,"to",3f,"delay",FadeInDelay,"time",FadeTimer,"onupdate","updateColor"));
     }

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 Noxury · Aug 19, 2019 at 10:17 PM 0
Share

Thanks! Though I switched over to DoTween.

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

101 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 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 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 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

How can I programmatically tween a Scroll View to a desired position? 0 Answers

UI Slider when not interactable changes color 1 Answer

Is it possible to invert the color of UI elements? 1 Answer

UI Triangle Color picker 0 Answers

Unity 5.2 Canvas component makes the position not to update 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