Skip to content

Instantly share code, notes, and snippets.

@felixblaschke
Created January 22, 2021 16:02
Show Gist options
  • Save felixblaschke/bdc60bbc2b44d8f37f2a96102533a373 to your computer and use it in GitHub Desktop.
Save felixblaschke/bdc60bbc2b44d8f37f2a96102533a373 to your computer and use it in GitHub Desktop.
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