How can I make an actor slowly fade in and out (like a blinking)?
cbowers428
Member Posts: 176
I'm trying to have an "alert" icon. I don't want it to blink but I want it to fade in and out repeatedly so it brings attention to it. Anyone know how? I tried interpolating but I messed up I think.
Comments
first rule
When Attribute self.color.alpha = 1
-----Interpolate Attribute self.color.alpha to 0
-----Duration 1
-----ease in
Second
When Attribute self.color.alpha = 0
-----Interpolate Attribute self.color.alpha to 1
-----Duration 1
-----ease in
I think that should work for you. This can probably also be achieved with an otherwise but im not as proficient with that yet