Guest User

Untitled

a guest
Oct 16th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. new Interpolation(
  2. t => toMove.position = Vector3.Lerp(startPosition, endPosition, t))
  3. .Duration(moveDuration)
  4. .Repeats(true)
  5. .PingPong(true)
  6. .Build(this).Play();
Add Comment
Please, Sign In to add comment