Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. var tween = transform.DOLocalMoveX (2f, 1f)
  2. .OnStart (() => Debug.Log ("OnStart"))
  3. .OnPlay (() => Debug.Log ("OnPlay"))
  4. .OnKill (() => Debug.Log ("OnKill"))
  5. .OnComplete (() => Debug.Log ("OnComplete"))
  6. .OnPause (() => Debug.Log ("OnPause"))
  7. .OnRewind (() => Debug.Log ("OnRewind"))
  8. .OnStepComplete (() => Debug.Log ("OnStepComplete"))
  9. .OnUpdate (() => Debug.LogWarning ("OnUpdate"))
  10. .OnWaypointChange (x => Debug.Log ("OnWaypointChange" + x));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement