Mark
Mark

Reputation: 23

How to make UI and Text effect in unity?

I need to make my UI and Text appear like this in Unity

enter image description here

Kinda lost, don't know how to do this.

Upvotes: -1

Views: 2153

Answers (1)

Swati
Swati

Reputation: 203

That is combination of two things:

  1. Glowing image. Which move over button.
  2. Button's image.

     "Image Type": Filled.
     "Fill Method": Horizontal. 
      and some other settings Here is the reference image.
    

    enter image description here

Animations:

For animation of glow and image fill you could use unity animation and animator but i think that will be over kill for such process so i will suggest to use tween plugin like DoTween (My personal Best, Free), ITween (Free), HoTween(Free), Easy Tween(Not Sure) etc.

Arrangement:

Arrangement of this is easy and can be achieve like this:

Button game object having child game object with image component. Then moving glowing game object over button.

If you need more information about animation and tween plugins or anything relevant to this then let me know...

I Hope this will help.

Upvotes: 4

Related Questions