Skip to content

Instantly share code, notes, and snippets.

@Dywane
Created July 27, 2018 08:12
Show Gist options
  • Save Dywane/5e6288337b21d68bc1ce6b0f34a3e6fa to your computer and use it in GitHub Desktop.
Save Dywane/5e6288337b21d68bc1ce6b0f34a3e6fa to your computer and use it in GitHub Desktop.
Wave update
_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