Skip to content

Instantly share code, notes, and snippets.

@335g
Created May 17, 2015 13:38
Show Gist options
  • Save 335g/c00b68d612394fb0529f to your computer and use it in GitHub Desktop.
Save 335g/c00b68d612394fb0529f to your computer and use it in GitHub Desktop.
Ex. Use Tween
var alpha: CGFloat = 0.0
State(alpha)
>>> wait(1.0)
>>> to(1.0, .InCubic, 0.8, toFloatValue())
>>> to(0.0, .OutCubic, 0.8, toFloatValue())
>>> wait(1.0)
>>> to(1.0, .InCubic, 0.8, toFloatValue())
>>> to(0.0, .OutCubic, 0.8, toFloatValue())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment