Skip to content

Instantly share code, notes, and snippets.

@jamiegilmartin
Last active February 22, 2018 19:54
Show Gist options
  • Select an option

  • Save jamiegilmartin/a0938236147f332d46820d4c5251a700 to your computer and use it in GitHub Desktop.

Select an option

Save jamiegilmartin/a0938236147f332d46820d4c5251a700 to your computer and use it in GitHub Desktop.
Lerp
override func update(deltaTime seconds: TimeInterval) {
super.update(deltaTime: seconds)
let lerpRate = 0.5 // or some normalized percentage
x += (Target — x) * lerpRate
myNode.position.x = x
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment