Created
July 27, 2018 08:12
-
-
Save Dywane/5e6288337b21d68bc1ce6b0f34a3e6fa to your computer and use it in GitHub Desktop.
Wave update
This file contains 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
_waveHeight! -= duration / Double(label!.font.lineHeight) | |
_translate! += 0.1 | |
if !_reverse { | |
_zoom! += 0.02 | |
if _zoom! >= 1.2 { | |
_reverse = true | |
} | |
} else { | |
_zoom! -= 0.02 | |
if _zoom! <= 1.0 { | |
_reverse = false | |
} | |
} | |
shapeLayer.path = wavePath() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment