How can I make an actor slowly fade in and out (like a blinking)?

cbowers428cbowers428 Member Posts: 176
edited November -1 in Working with GS (Mac)
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

  • tenrdrmertenrdrmer Member, Sous Chef, Senior Sous-Chef Posts: 9,934
    For a constant fade in fade out I would suggest making to rules
    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
  • cbowers428cbowers428 Member Posts: 176
    ok cool thanks
Sign In or Register to comment.