RetroFE forums

General Category => Feature Requests / Suggestions => Topic started by: 8bitsdeep on July 07, 2019, 11:16:19 PM

Title: "Pulse" animations
Post by: 8bitsdeep on July 07, 2019, 11:16:19 PM
It'd be cool if we could make animations "pulse" back and forth between the FROM and TO values.

Example:
<animate type="alpha" from="0.7" to="1" pulse="true" />

Would cause the animate value to do something like this:
0.7
0.8
0.9
1.0
0.9
0.8
0.7
0.8
etc.
Title: Re: "Pulse" animations
Post by: Pieter Hulshoff on July 08, 2019, 06:42:22 AM
Just create two animations following each other; I had something like this working in my original Pandora's Box theme.
Title: Re: "Pulse" animations
Post by: 8bitsdeep on July 09, 2019, 04:21:06 PM
Oh neat, I didn't realize you could chain them like that.  Thank you!