Created
January 22, 2021 16:02
-
-
Save felixblaschke/bdc60bbc2b44d8f37f2a96102533a373 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TimelineTween<Prop> _createComplexTween() { | |
var tween = TimelineTween<Prop>(); | |
var fadeIn = tween.addScene(begin: 0.seconds, duration: 1.seconds) | |
.animate(Prop.x, ...) | |
.animate(Prop.y, ...); | |
var grow = fadeIn.addSubsequentScene(duration: 2.seconds) // right after fadeIn | |
.animate(Prop.x, ...) | |
.animate(Prop.y, ...); | |
... | |
return tween; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment