View source
typedef FlickerTweenOptions
package flixel.tweens.misc
import flixel.tweens.misc.FlickerTween
Special tween options for flicker tweens
Available since
5.7.0
.Fields
optionaltweenFunction:Null<FlickerTween ‑> Bool>
An optional custom flicker function, defaults to
function (tween) { return (tween.time / tween.period) % 1 > tween.ratio; }