Created
October 25, 2016 17:26
-
-
Save baobao/d32c800ce83b27d90586b178bdc09677 to your computer and use it in GitHub Desktop.
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
var tween = transform.DOLocalMoveX (2f, 1f) | |
.OnStart (() => Debug.Log ("OnStart")) | |
.OnPlay (() => Debug.Log ("OnPlay")) | |
.OnKill (() => Debug.Log ("OnKill")) | |
.OnComplete (() => Debug.Log ("OnComplete")) | |
.OnPause (() => Debug.Log ("OnPause")) | |
.OnRewind (() => Debug.Log ("OnRewind")) | |
.OnStepComplete (() => Debug.Log ("OnStepComplete")) | |
.OnUpdate (() => Debug.LogWarning ("OnUpdate")) | |
.OnWaypointChange (x => Debug.Log ("OnWaypointChange" + x)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment