v1.1.1
Added the option to delay a Sequence
performed in an animation group. Simply add the .delayed()
method to your Sequence
:
AnimationPlanner.group {
Sequence {
// Your sequenced animations
}.delayed(0.25) // Set delay for sequence here
}
Full Changelog: v1.1.0...1.1.1